MenuItem.checkbox constructor
MenuItem.checkbox({})
Implementation
MenuItem.checkbox({
this.key,
String? label,
this.sublabel,
String? toolTip,
this.icon,
required bool? checked,
bool disabled = false,
this.onClick,
this.onHighlight,
this.onLoseHighlight,
}) : id = _generateMenuItemId(),
type = 'checkbox',
_label = label,
_toolTip = toolTip,
_checked = checked,
_disabled = disabled;