AnimatedWrapper constructor

const AnimatedWrapper({
  1. Key? key,
  2. required Animation<double> animation,
  3. required SnackbarAnimation animationType,
  4. required SnackbarPosition position,
  5. required Widget child,
  6. bool isDismissing = false,
})

Implementation

const AnimatedWrapper({
  super.key,
  required this.animation,
  required this.animationType,
  required this.position,
  required this.child,
  this.isDismissing = false,
});