JumpAnimationOptions constructor

const JumpAnimationOptions({
  1. bool active = true,
  2. Duration duration = const Duration(milliseconds: 500),
  3. Curve curve = Curves.linearToEaseOut,
})

Implementation

const JumpAnimationOptions({
  this.active = true,
  this.duration = const Duration(milliseconds: 500),
  this.curve = Curves.linearToEaseOut,
});