ToastAnimation.slideOutTopFade constructor

ToastAnimation.slideOutTopFade({
  1. Duration? duration,
  2. Curve? curve,
})

Slide out to the top with a fade. Pairs with springFromTop / slideFromTopFade entries.

Implementation

factory ToastAnimation.slideOutTopFade({Duration? duration, Curve? curve}) {
  return ToastAnimation._(
    type: ToastAnimationType.slideFromTopFade,
    duration: duration ?? const Duration(milliseconds: 300),
    curve: curve ?? Curves.easeInBack,
  );
}