AnimatedPopup constructor

const AnimatedPopup({
  1. Key? key,
  2. required Widget child,
  3. PopupAnimationType animationType = PopupAnimationType.fade,
  4. required PopupDirection direction,
  5. Duration duration = const Duration(milliseconds: 300),
  6. bool slideReverse = false,
})

Implementation

const AnimatedPopup({
  super.key,
  required this.child,
  this.animationType = PopupAnimationType.fade,
  required this.direction,
  this.duration = const Duration(milliseconds: 300),
  this.slideReverse = false,
});