future property

(Future<List<T>> Function(String input)?) future
final

The asynchronous computation that this builder is currently connected to, which may be null.

If no future has completed yet, including in the case where future is null, the builder function will use initialData to provide initial data.

This property can be thought of as the asynchronous version of suggestions.

Implementation

final Future<List<T>> Function(String input)? future;