UiRadioButton<T> constructor
const
UiRadioButton<T> ({
- Key? key,
- required T value,
- required T? groupValue,
- required ValueChanged<
T> onChanged, - required String label,
- bool isDisabled = false,
- String? errorText,
Implementation
const UiRadioButton({
super.key,
required this.value,
required this.groupValue,
required this.onChanged,
required this.label,
this.isDisabled = false,
this.errorText,
});