BadPopup constructor

const BadPopup({
  1. Key? key,
  2. required PopupController controller,
  3. bool rebuildOnVisible = false,
  4. VoidCallback? onClickOut,
  5. required PopupChildBuilder childBuilder,
  6. required Widget popup,
  7. Alignment childOrigin = Alignment.bottomLeft,
  8. Alignment popupOrigin = Alignment.topLeft,
  9. Offset popupOffset = Offset.zero,
})

Implementation

const BadPopup({
  super.key,
  required this.controller,
  this.rebuildOnVisible = false,
  this.onClickOut,
  required this.childBuilder,
  required this.popup,
  this.childOrigin = Alignment.bottomLeft,
  this.popupOrigin = Alignment.topLeft,
  this.popupOffset = Offset.zero,
});