autocompletionList property

List<Prediction> get autocompletionList

Gets the current list of auto-completion suggestions.

Returns a list of Prediction objects representing the suggestions.

Implementation

List<Prediction> get autocompletionList => _autocompletionList;
set autocompletionList (dynamic value)

Sets the list of auto-completion suggestions.

  • value: The new list of Prediction objects to be set.

Implementation

set autocompletionList(value) => _autocompletionList.value = value;