MenuItem constructor
const
MenuItem({
- required String label,
- VoidCallback? onSelected,
- String? shortcut,
- bool enabled = true,
Creates a MenuItem with the given label.
Implementation
const MenuItem({
required this.label,
this.onSelected,
this.shortcut,
this.enabled = true,
});