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