AtomicRadio<T> constructor
const
AtomicRadio<T> ({
- Key? key,
- required T value,
- required T? groupValue,
- required ValueChanged<
T?> ? onChanged, - String? label,
- Color? activeColor,
- Color? inactiveColor,
- AtomicRadioSize size = AtomicRadioSize.medium,
- bool enabled = true,
Implementation
const AtomicRadio({
super.key,
required this.value,
required this.groupValue,
required this.onChanged,
this.label,
this.activeColor,
this.inactiveColor,
this.size = AtomicRadioSize.medium,
this.enabled = true,
});