SubZeroRadio<T> constructor
const
SubZeroRadio<T> ({
- Key? key,
- required T value,
- required T? groupValue,
- required ValueChanged<
T?> ? onChanged, - String? label,
- bool enabled = true,
- SubZeroRadioSize size = SubZeroRadioSize.medium,
- String? semanticLabel,
- TextStyle? labelStyle,
- Color? activeColor,
- Color? borderColor,
Implementation
const SubZeroRadio({
super.key,
required this.value,
required this.groupValue,
required this.onChanged,
this.label,
this.enabled = true,
this.size = SubZeroRadioSize.medium,
this.semanticLabel,
this.labelStyle,
this.activeColor,
this.borderColor,
});