bind method
CellCheckboxMenuButton
bind({
- ValueCell<
bool> ? enabled, - MetaCell<
bool> ? onHover, - MetaCell<
bool> ? onFocusChange, - MutableCell<
bool?> ? value, - ValueCell<
bool> ? tristate, - ValueCell<
bool> ? isError, - ValueCell<
FocusNode?> ? focusNode, - ValueCell<
MenuSerializableShortcut?> ? shortcut, - ValueCell<
ButtonStyle?> ? style, - ValueCell<
WidgetStatesController?> ? statesController, - ValueCell<
Clip> ? clipBehavior, - ValueCell<
Widget?> ? trailingIcon, - ValueCell<
bool> ? closeOnActivate, - ValueCell<
Widget?> ? child,
Implementation
CellCheckboxMenuButton bind({
ValueCell<bool>? enabled,
MetaCell<bool>? onHover,
MetaCell<bool>? onFocusChange,
MutableCell<bool?>? value,
ValueCell<bool>? tristate,
ValueCell<bool>? isError,
ValueCell<FocusNode?>? focusNode,
ValueCell<MenuSerializableShortcut?>? shortcut,
ValueCell<ButtonStyle?>? style,
ValueCell<WidgetStatesController?>? statesController,
ValueCell<Clip>? clipBehavior,
ValueCell<Widget?>? trailingIcon,
ValueCell<bool>? closeOnActivate,
ValueCell<Widget?>? child,
}) =>
CellCheckboxMenuButton(
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,
);