PopupMenuItem<T> constructor

PopupMenuItem<T>({
  1. required T value,
  2. required Widget child,
  3. bool enabled = true,
  4. CmdCallback? onTap,
  5. Key? key,
})

Implementation

PopupMenuItem({
  required this.value,
  required this.child,
  this.enabled = true,
  this.onTap,
  super.key,
});