RadioButtonsController<T> constructor
RadioButtonsController<T> ({
- T? initialValue,
- bool? disabled,
Supply the initial value of the Radio buttons
Implementation
RadioButtonsController({this.initialValue, bool? disabled}) {
this.disabled = disabled ?? false;
groupValue = initialValue;
}