suggestions property

List<T> suggestions

Implementation

List<T> get suggestions =>
    List.from(_suggestions.current?.suggestions ?? [], growable: false);
void suggestions=(Iterable<T>? suggestions)

Implementation

set suggestions(Iterable<T>? suggestions) => checkStatusVoid(() {
      final suggest = ChipSuggestions<T>(suggestions: [...?suggestions]);
      calculateInlineSuggestion(suggest);
      _suggestions.current = suggest;
      notifyListeners();
    });