bind method

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

Implementation

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