LiveRadio<T> constructor
const
LiveRadio<T> ({
- Key? key,
- ValueCell<
bool> enabled = const ValueCell.value(true), - required T value,
- required MutableCell<
T?> groupValue, - MouseCursor? mouseCursor,
- bool toggleable = false,
- Color? activeColor,
- WidgetStateProperty<
Color?> ? fillColor, - Color? focusColor,
- Color? hoverColor,
- WidgetStateProperty<
Color?> ? overlayColor, - double? splashRadius,
- MaterialTapTargetSize? materialTapTargetSize,
- VisualDensity? visualDensity,
- FocusNode? focusNode,
- bool autofocus = false,
Implementation
const LiveRadio({
super.key,
this.enabled = const ValueCell.value(true),
required this.value,
required this.groupValue,
this.mouseCursor,
this.toggleable = false,
this.activeColor,
this.fillColor,
this.focusColor,
this.hoverColor,
this.overlayColor,
this.splashRadius,
this.materialTapTargetSize,
this.visualDensity,
this.focusNode,
this.autofocus = false,
});