ControlState<T> constructor

ControlState<T>(
  1. Map<String, dynamic> _properties,
  2. dynamic onChanged(
    1. T
    ), {
  3. T? initialValue,
  4. bool autofocus = false,
})

Implementation

ControlState(this._properties, this.onChanged,
    {this.initialValue, this.autofocus = false});