closeSuggestions method
Collapses the suggestions list in the dropdown.
Implementation
@override
void closeSuggestions() {
if (selectedValue != null &&
selectedValue?.text != searchTextController.text) {
searchTextController.text = selectedValue!.text;
}
super.closeSuggestions();
}