ToastAnimation.slideFromTopFade constructor
Slide from top with fade effect. Best for smooth top-positioned notifications.
Implementation
factory ToastAnimation.slideFromTopFade({Duration? duration, Curve? curve}) {
return ToastAnimation._(
type: ToastAnimationType.slideFromTopFade,
duration: duration,
curve: curve,
);
}