AuiRadioOption<T> constructor

const AuiRadioOption<T>({
  1. required T value,
  2. required String label,
  3. String? subtitle,
  4. bool disabled = false,
})

Creates an AuiRadioOption with the given value and label.

Implementation

const AuiRadioOption({
  required this.value,
  required this.label,
  this.subtitle,
  this.disabled = false,
});