SubZeroRadioGroupWithItems<T> constructor
const
SubZeroRadioGroupWithItems<T> ({
- Key? key,
- required List<
SubZeroRadioItem< items,T> > - required ValueChanged<
T?> onChanged, - T? initialValue,
- bool enabled = true,
- SubZeroRadioSize size = SubZeroRadioSize.medium,
- Axis direction = Axis.vertical,
- double? spacing,
- Color? activeColor,
- Color? borderColor,
Implementation
const SubZeroRadioGroupWithItems({
super.key,
required this.items,
required this.onChanged,
this.initialValue,
this.enabled = true,
this.size = SubZeroRadioSize.medium,
this.direction = Axis.vertical,
this.spacing,
this.activeColor,
this.borderColor,
});