bind method
Implementation
CellElevatedButton bind({
ValueCell<bool>? enabled,
MetaCell<void>? press,
MetaCell<void>? longPress,
MetaCell<bool>? onHover,
MetaCell<bool>? onFocusChange,
ValueCell<ButtonStyle?>? style,
ValueCell<bool>? autofocus,
ValueCell<Clip?>? clipBehavior,
ValueCell<Widget?>? child,
}) =>
CellElevatedButton(
enabled: enabled ?? this.enabled,
press: press ?? this.press,
longPress: longPress ?? this.longPress,
onHover: onHover ?? this.onHover,
onFocusChange: onFocusChange ?? this.onFocusChange,
style: style ?? this.style,
autofocus: autofocus ?? this.autofocus,
clipBehavior: clipBehavior ?? this.clipBehavior,
child: child ?? this.child,
);