UiRadioButton<T> constructor

const UiRadioButton<T>({
  1. Key? key,
  2. required T value,
  3. required T? groupValue,
  4. required ValueChanged<T> onChanged,
  5. required String label,
  6. bool isDisabled = false,
  7. String? errorText,
})

Implementation

const UiRadioButton({
  super.key,
  required this.value,
  required this.groupValue,
  required this.onChanged,
  required this.label,
  this.isDisabled = false,
  this.errorText,
});