bind method
LiveCheckbox
bind({
- ValueCell<
bool> ? enabled, - MutableCell<
bool?> ? value, - bool? tristate,
- MouseCursor? mouseCursor,
- Color? activeColor,
- WidgetStateProperty<
Color?> ? fillColor, - Color? checkColor,
- Color? focusColor,
- Color? hoverColor,
- WidgetStateProperty<
Color?> ? overlayColor, - double? splashRadius,
- MaterialTapTargetSize? materialTapTargetSize,
- VisualDensity? visualDensity,
- FocusNode? focusNode,
- bool? autofocus,
- OutlinedBorder? shape,
- BorderSide? side,
- bool? isError,
- String? semanticLabel,
Implementation
LiveCheckbox bind({
ValueCell<bool>? enabled,
MutableCell<bool?>? value,
bool? tristate,
MouseCursor? mouseCursor,
Color? activeColor,
WidgetStateProperty<Color?>? fillColor,
Color? checkColor,
Color? focusColor,
Color? hoverColor,
WidgetStateProperty<Color?>? overlayColor,
double? splashRadius,
MaterialTapTargetSize? materialTapTargetSize,
VisualDensity? visualDensity,
FocusNode? focusNode,
bool? autofocus,
OutlinedBorder? shape,
BorderSide? side,
bool? isError,
String? semanticLabel,
}) =>
LiveCheckbox(
enabled: enabled ?? this.enabled,
value: value ?? this.value,
tristate: tristate ?? this.tristate,
mouseCursor: mouseCursor ?? this.mouseCursor,
activeColor: activeColor ?? this.activeColor,
fillColor: fillColor ?? this.fillColor,
checkColor: checkColor ?? this.checkColor,
focusColor: focusColor ?? this.focusColor,
hoverColor: hoverColor ?? this.hoverColor,
overlayColor: overlayColor ?? this.overlayColor,
splashRadius: splashRadius ?? this.splashRadius,
materialTapTargetSize:
materialTapTargetSize ?? this.materialTapTargetSize,
visualDensity: visualDensity ?? this.visualDensity,
focusNode: focusNode ?? this.focusNode,
autofocus: autofocus ?? this.autofocus,
shape: shape ?? this.shape,
side: side ?? this.side,
isError: isError ?? this.isError,
semanticLabel: semanticLabel ?? this.semanticLabel,
);