withAnimation method

SnackBar withAnimation(
  1. Animation<double> newAnimation, {
  2. Key? fallbackKey,
})
override

Creates a copy of this snack bar but with the animation replaced with the given animation.

If the original snack bar lacks a key, the newly created snack bar will use the given fallback key.

Implementation

SnackBar withAnimation(Animation<double> newAnimation, {Key? fallbackKey}) {
  return MySnackBar(
    key: key ?? fallbackKey,
    content: content,
    backgroundColor: backgroundColor,
    elevation: elevation,
    margin: margin,
    padding: padding,
    width: width,
    shape: shape,
    behavior: behavior,
    action: action,
    duration: duration,
    animation: newAnimation,
    onVisible: onVisible,
    placement: placement,
  );
}