bind method

CellTextButton bind({
  1. ValueCell<bool>? enabled,
  2. MetaCell<void>? press,
  3. MetaCell<void>? longPress,
  4. MetaCell<bool>? onHover,
  5. MetaCell<bool>? onFocusChange,
  6. ValueCell<ButtonStyle?>? style,
  7. ValueCell<bool>? autofocus,
  8. ValueCell<Clip?>? clipBehavior,
  9. ValueCell<Widget>? child,
})

Implementation

CellTextButton 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,
}) =>
    CellTextButton(
      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,
    );