ControlledRadioGroup<T> constructor
const
ControlledRadioGroup<T> ({
- Key? key,
- RadioGroupController<
T?> ? controller, - T? initialValue,
- ValueChanged<
T?> ? onChanged, - bool enabled = true,
- required Widget child,
Implementation
const ControlledRadioGroup({
super.key,
this.controller,
this.initialValue,
this.onChanged,
this.enabled = true,
required this.child,
});