NiceRadioGroup<T> constructor
- Key? key,
- required List<
NiceRadioItem< items,T> > - required T? value,
- required ValueChanged<
T> onChanged, - String? label,
- bool enabled = true,
- Axis direction = Axis.vertical,
- double spacing = 4,
Implementation
const NiceRadioGroup({
super.key,
required this.items,
required this.value,
required this.onChanged,
this.label,
this.enabled = true,
this.direction = Axis.vertical,
this.spacing = 4,
});