AuiRadioGroup<T> constructor

const AuiRadioGroup<T>({
  1. Key? key,
  2. required List<AuiRadioOption<T>> options,
  3. required T? value,
  4. required ValueChanged<T>? onChanged,
  5. RadioGroupDirection direction = RadioGroupDirection.vertical,
  6. Color? activeColor,
})

Creates an AuiRadioGroup.

Implementation

const AuiRadioGroup({
  super.key,
  required this.options,
  required this.value,
  required this.onChanged,
  this.direction = RadioGroupDirection.vertical,
  this.activeColor,
});