bind method
CellRadio
bind({
- ValueCell<
bool> ? enabled, - ValueCell<
T> ? value, - MutableCell<
T?> ? groupValue, - ValueCell<
MouseCursor?> ? mouseCursor, - ValueCell<
bool> ? toggleable, - ValueCell<
Color?> ? activeColor, - ValueCell<
WidgetStateProperty< ? fillColor,Color?> ?> - ValueCell<
Color?> ? focusColor, - ValueCell<
Color?> ? hoverColor, - ValueCell<
WidgetStateProperty< ? overlayColor,Color?> ?> - ValueCell<
double?> ? splashRadius, - ValueCell<
MaterialTapTargetSize?> ? materialTapTargetSize, - ValueCell<
VisualDensity?> ? visualDensity, - ValueCell<
FocusNode?> ? focusNode, - ValueCell<
bool> ? autofocus,
Implementation
CellRadio bind({
ValueCell<bool>? enabled,
ValueCell<T>? value,
MutableCell<T?>? groupValue,
ValueCell<MouseCursor?>? mouseCursor,
ValueCell<bool>? toggleable,
ValueCell<Color?>? activeColor,
ValueCell<WidgetStateProperty<Color?>?>? fillColor,
ValueCell<Color?>? focusColor,
ValueCell<Color?>? hoverColor,
ValueCell<WidgetStateProperty<Color?>?>? overlayColor,
ValueCell<double?>? splashRadius,
ValueCell<MaterialTapTargetSize?>? materialTapTargetSize,
ValueCell<VisualDensity?>? visualDensity,
ValueCell<FocusNode?>? focusNode,
ValueCell<bool>? autofocus,
}) =>
CellRadio(
enabled: enabled ?? this.enabled,
value: value ?? this.value,
groupValue: groupValue ?? this.groupValue,
mouseCursor: mouseCursor ?? this.mouseCursor,
toggleable: toggleable ?? this.toggleable,
activeColor: activeColor ?? this.activeColor,
fillColor: fillColor ?? this.fillColor,
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,
);