AsBouncingAnimation constructor

AsBouncingAnimation({
  1. Key? key,
  2. required Widget child,
  3. Duration? duration,
  4. Curve? curve,
  5. ToastDirection? toastDirection,
  6. AnimationForce? animationForce,
})

Implementation

AsBouncingAnimation(
    {Key? key,
    required this.child,
    this.duration,
    this.curve,
    this.toastDirection,
    this.animationForce})
    : super(key: key);