PopupMenuItem<T> constructor
PopupMenuItem<T> ({
- required T value,
- required Widget child,
- bool enabled = true,
- CmdCallback? onTap,
- Key? key,
Implementation
PopupMenuItem({
required this.value,
required this.child,
this.enabled = true,
this.onTap,
super.key,
});