bind method
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,
);