suggestions property
List<T>
get
suggestions
Implementation
List<T> get suggestions =>
List.from(_suggestions.current?.suggestions ?? [], growable: false);
set
suggestions
(Iterable<T> ? suggestions)
Implementation
set suggestions(Iterable<T>? suggestions) => checkStatusVoid(() {
final suggest = ChipSuggestions<T>(suggestions: [...?suggestions]);
calculateInlineSuggestion(suggest);
_suggestions.current = suggest;
notifyListeners();
});