bind method

CellCloseButton bind({
  1. ValueCell<bool>? enabled,
  2. MetaCell<void>? press,
  3. ValueCell<Color?>? color,
  4. ValueCell<ButtonStyle?>? style,
})

Implementation

CellCloseButton bind({
  ValueCell<bool>? enabled,
  MetaCell<void>? press,
  ValueCell<Color?>? color,
  ValueCell<ButtonStyle?>? style,
}) =>
    CellCloseButton(
      enabled: enabled ?? this.enabled,
      press: press ?? this.press,
      color: color ?? this.color,
      style: style ?? this.style,
    );