autocomplete abstract method

FutureOr<List<AutocompleteOption>> autocomplete(
  1. List<String> args
)

Called whenever user requests autocomplete. Must return list of possible options.

Implementation

FutureOr<List<AutocompleteOption>> autocomplete(List<String> args);