ControlledRadioGroup<T> constructor

const ControlledRadioGroup<T>({
  1. Key? key,
  2. RadioGroupController<T?>? controller,
  3. T? initialValue,
  4. ValueChanged<T?>? onChanged,
  5. bool enabled = true,
  6. required Widget child,
})

Implementation

const ControlledRadioGroup({
  super.key,
  this.controller,
  this.initialValue,
  this.onChanged,
  this.enabled = true,
  required this.child,
});