ToastAnimation.slideFromTop constructor
Slide from top of screen. Best for notifications positioned at top.
Implementation
factory ToastAnimation.slideFromTop({Duration? duration, Curve? curve}) {
return ToastAnimation._(
type: ToastAnimationType.slideFromTop,
duration: duration,
curve: curve,
);
}