FAutocompleteManagedControl constructor
const
FAutocompleteManagedControl({
- FAutocompleteController? controller,
- TextEditingValue? initial,
- ValueChanged<
TextEditingValue> ? onChange,
Creates a FAutocompleteControl.
Implementation
const FAutocompleteManagedControl({this.controller, this.initial, this.onChange})
: assert(
controller == null || initial == null,
'Cannot provide both controller and initial value. Pass initial value to the controller instead.',
),
super._();