Suggestions<Value> typedef

Suggestions<Value> = Future<List<Value>> Function(String pattern)

Signature for the Suggestions function which takes pattern and should returns a Future with a List<Value>.

Implementation

typedef Suggestions<Value> = Future<List<Value>> Function(String pattern);