PopupConfig constructor

PopupConfig(
  1. BuildContext context,
  2. PopUpMode popUpMode, {
  3. bool useBarrier = true,
  4. bool dismissOnBarrierClick = true,
  5. Color barrierColor = Colors.transparent,
  6. required Alignment anchor,
  7. required Alignment popUpAnchor,
  8. required Widget popUpContent,
})

Implementation

PopupConfig(
  this.context,
  this.popUpMode, {
  this.useBarrier = true,
  this.dismissOnBarrierClick = true,
  this.barrierColor = Colors.transparent,
  required this.anchor,
  required this.popUpAnchor,
  required this.popUpContent,
});