FollowEffect constructor

FollowEffect({
  1. required PositionOwner following,
  2. required double speed,
  3. bool? cleanup,
  4. bool? enabled,
  5. int? priority,
})

Implementation

FollowEffect({
  required this.following,
  required this.speed,
  super.cleanup,
  super.enabled,
  super.priority,
}) {
  _target = EffectTarget<PositionOwner>(this);
}