PlatformJumpAnimations constructor

PlatformJumpAnimations({
  1. required FutureOr<SpriteAnimation> jumpUpRight,
  2. required FutureOr<SpriteAnimation> jumpDownRight,
  3. FutureOr<SpriteAnimation>? jumpUpLeft,
  4. FutureOr<SpriteAnimation>? jumpDownLeft,
})

Implementation

PlatformJumpAnimations({
  required this.jumpUpRight,
  required this.jumpDownRight,
  this.jumpUpLeft,
  this.jumpDownLeft,
});