AutocompleteOptionsBuilder<T extends Object> typedef
Null safety
The type of the RawAutocomplete callback which computes the list of optional completions for the widget's field, based on the text the user has entered so far.
See also:
- RawAutocomplete.optionsBuilder, which is of this type.
Implementation
typedef AutocompleteOptionsBuilder<T extends Object> = FutureOr<Iterable<T>> Function(TextEditingValue textEditingValue);