CheckedPopupMenuItemModifier<T> constructor
const
CheckedPopupMenuItemModifier<T> ({
- Key? key,
- Key? modifierKey,
- T? value,
- bool checked = false,
- bool enabled = true,
- EdgeInsets? padding,
- double height = kMinInteractiveDimension,
- MouseCursor? mouseCursor,
- Widget? child,
Creates a popup menu item with a checkmark.
By default, the menu item is enabled
but unchecked. To mark the item as
checked, set checked
to true.
The checked
and enabled
arguments must not be null.
Implementation
const CheckedPopupMenuItemModifier({
super.key,
super.modifierKey,
super.value,
this.checked = false,
super.enabled,
super.padding,
super.height,
super.mouseCursor,
super.child,
});