KntSelectionPopupOption constructor

const KntSelectionPopupOption({
  1. required Widget title,
  2. Color? backgroundColor,
  3. Icon? trailingIcon,
  4. required void onPressed(),
})

Implementation

const KntSelectionPopupOption({
  required this.title,
  this.backgroundColor,
  this.trailingIcon,
  required this.onPressed,
});