PopupOverlayOptions constructor

const PopupOverlayOptions({
  1. Alignment alignment = Alignment.topCenter,
  2. bool rotate = true,
  3. required Widget popup,
  4. Duration animationDuration = const Duration(milliseconds: 300),
  5. Curve animationCurve = Curves.easeOut,
  6. EdgeInsets? margin,
})

Implementation

const PopupOverlayOptions({
  this.alignment = Alignment.topCenter,
  this.rotate = true,
  required this.popup,
  this.animationDuration = const Duration(milliseconds: 300),
  this.animationCurve = Curves.easeOut,
  this.margin,
});