OudsRadioButtonItem<T> constructor

const OudsRadioButtonItem<T>({
  1. Key? key,
  2. required T value,
  3. required T groupValue,
  4. required ValueChanged<T?>? onChanged,
  5. required String title,
  6. String? additionalLabel,
  7. String? helperTitle,
  8. String? icon,
  9. bool outlined = false,
  10. bool reversed = false,
  11. bool readOnly = false,
  12. bool isError = false,
  13. bool enabled = true,
  14. bool divider = false,
})

Implementation

const OudsRadioButtonItem({
  super.key,
  required this.value,
  required this.groupValue,
  required this.onChanged,
  required this.title,
  this.additionalLabel,
  this.helperTitle,
  this.icon,
  this.outlined = false,
  this.reversed = false,
  this.readOnly = false,
  this.isError = false,
  this.enabled = true,
  this.divider = false,
});