FollowEffect constructor
- required PositionOwner following,
- required double speed,
- bool? cleanup,
- bool? enabled,
- int? priority,
Implementation
FollowEffect({
required this.following,
required this.speed,
super.cleanup,
super.enabled,
super.priority,
}) {
_target = EffectTarget<PositionOwner>(this);
}