bind method

CellRadio bind({
  1. ValueCell<bool>? enabled,
  2. ValueCell<T>? value,
  3. MutableCell<T?>? groupValue,
  4. ValueCell<MouseCursor?>? mouseCursor,
  5. ValueCell<bool>? toggleable,
  6. ValueCell<Color?>? activeColor,
  7. ValueCell<WidgetStateProperty<Color?>?>? fillColor,
  8. ValueCell<Color?>? focusColor,
  9. ValueCell<Color?>? hoverColor,
  10. ValueCell<WidgetStateProperty<Color?>?>? overlayColor,
  11. ValueCell<double?>? splashRadius,
  12. ValueCell<MaterialTapTargetSize?>? materialTapTargetSize,
  13. ValueCell<VisualDensity?>? visualDensity,
  14. ValueCell<FocusNode?>? focusNode,
  15. 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,
    );