KntSelectionPopupPresenter constructor

const KntSelectionPopupPresenter({
  1. Key? key,
  2. required List<KntSelectionPopupOption> options,
  3. required Widget child,
  4. KntSelectionPopupStyle? style,
  5. Duration? duration,
  6. void onPressed()?,
  7. bool openWithTap = false,
})

Implementation

const KntSelectionPopupPresenter({
  super.key,
  required this.options,
  required this.child,
  this.style,
  this.duration,
  this.onPressed,
  this.openWithTap = false,
});