CellRadio<T> constructor
const
CellRadio<T> ({
- Key? key,
- ValueCell<
bool> enabled = const ValueCell.value(true), - required ValueCell<
T> value, - required MutableCell<
T?> groupValue, - ValueCell<
MouseCursor?> ? mouseCursor, - ValueCell<
bool> toggleable = const ValueCell.value(false), - 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 = const ValueCell.value(false),
Implementation
const CellRadio({
super.key,
this.enabled = const ValueCell.value(true),
required this.value,
required this.groupValue,
this.mouseCursor,
this.toggleable = const ValueCell.value(false),
this.activeColor,
this.fillColor,
this.focusColor,
this.hoverColor,
this.overlayColor,
this.splashRadius,
this.materialTapTargetSize,
this.visualDensity,
this.focusNode,
this.autofocus = const ValueCell.value(false),
});