RadioGroup<T> constructor

const RadioGroup<T>({
  1. Key? key,
  2. required Widget child,
  3. T? value,
  4. ValueChanged<T>? onChanged,
})

Implementation

const RadioGroup({
  super.key,
  required this.child,
  this.value,
  this.onChanged,
});