bind method
Implementation
LiveOutlinedButton bind({
ValueCell<bool>? enabled,
MetaCell<void>? press,
MetaCell<void>? longPress,
MetaCell<bool>? onHover,
MetaCell<bool>? onFocusChange,
ButtonStyle? style,
bool? autofocus,
Clip? clipBehavior,
Widget? child,
}) =>
LiveOutlinedButton(
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,
);