bind method
LiveCheckboxMenuButton
bind({
- ValueCell<
bool> ? enabled, - MetaCell<
bool> ? onHover, - MetaCell<
bool> ? onFocusChange, - MutableCell<
bool?> ? value, - bool? tristate,
- bool? isError,
- FocusNode? focusNode,
- MenuSerializableShortcut? shortcut,
- ButtonStyle? style,
- WidgetStatesController? statesController,
- Clip? clipBehavior,
- Widget? trailingIcon,
- bool? closeOnActivate,
- Widget? child,
Implementation
LiveCheckboxMenuButton bind({
ValueCell<bool>? enabled,
MetaCell<bool>? onHover,
MetaCell<bool>? onFocusChange,
MutableCell<bool?>? value,
bool? tristate,
bool? isError,
FocusNode? focusNode,
MenuSerializableShortcut? shortcut,
ButtonStyle? style,
WidgetStatesController? statesController,
Clip? clipBehavior,
Widget? trailingIcon,
bool? closeOnActivate,
Widget? child,
}) =>
LiveCheckboxMenuButton(
enabled: enabled ?? this.enabled,
onHover: onHover ?? this.onHover,
onFocusChange: onFocusChange ?? this.onFocusChange,
value: value ?? this.value,
tristate: tristate ?? this.tristate,
isError: isError ?? this.isError,
focusNode: focusNode ?? this.focusNode,
shortcut: shortcut ?? this.shortcut,
style: style ?? this.style,
statesController: statesController ?? this.statesController,
clipBehavior: clipBehavior ?? this.clipBehavior,
trailingIcon: trailingIcon ?? this.trailingIcon,
closeOnActivate: closeOnActivate ?? this.closeOnActivate,
child: child ?? this.child,
);