SubZeroRadioGroup<T> constructor
const
SubZeroRadioGroup<T> ({
- Key? key,
- required List<
T> items, - required ValueChanged<
T?> onChanged, - T? initialValue,
- bool enabled = true,
- SubZeroRadioSize size = SubZeroRadioSize.medium,
- Axis direction = Axis.vertical,
- double? spacing,
- Color? activeColor,
- Color? borderColor,
- String labelBuilder(
- T item
Implementation
const SubZeroRadioGroup({
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,
this.labelBuilder,
});