closeSuggestions method

  1. @override
void closeSuggestions()
override

Collapses the suggestions list in the dropdown.

Implementation

@override
void closeSuggestions() {
  if (selectedValue != null &&
      selectedValue?.text != searchTextController.text) {
    searchTextController.text = selectedValue!.text;
  }
  super.closeSuggestions();
}