RadioGroup<T> constructor

const RadioGroup<T>({
  1. required Key id,
  2. required List<RadioOption<T>> options,
  3. T? selected,
  4. void onChanged(
    1. T
    )?,
})

Implementation

const RadioGroup({
  required this.id,
  required this.options,
  this.selected,
  this.onChanged,
});