ToastAnimation.slideFromRightFade constructor
Slide from right with fade effect. Best for smooth right-side entry.
Implementation
factory ToastAnimation.slideFromRightFade({
Duration? duration,
Curve? curve,
}) {
return ToastAnimation._(
type: ToastAnimationType.slideFromRightFade,
duration: duration,
curve: curve,
);
}