ToastAnimation.slideFromTop constructor

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

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,
  );
}