ToastAnimation.fadeScale constructor
Combined fade and scale animation. Best for prominent notifications.
Implementation
factory ToastAnimation.fadeScale({Duration? duration, Curve? curve}) {
return ToastAnimation._(
type: ToastAnimationType.fadeScale,
duration: duration,
curve: curve,
);
}