ZoomOutAnimation constructor

const ZoomOutAnimation({
  1. double scale = 0.001,
  2. Duration duration = const Duration(seconds: 1),
  3. Duration delay = Duration.zero,
  4. Curve curve = Curves.linear,
  5. CustomAnimationControl control = CustomAnimationControl.PLAY,
})

Implementation

const ZoomOutAnimation(
    {this.scale = 0.001,
    Duration duration = const Duration(seconds: 1),
    Duration delay = Duration.zero,
    Curve curve = Curves.linear,
    CustomAnimationControl control = CustomAnimationControl.PLAY})
    : super(duration: duration, delay: delay, curve: curve, control: control);