clearSelection method

void clearSelection()

Implementation

void clearSelection() {
  selectedValues.clear();
  searchTextController.text = "";
  selectorTextEditingController.text = "";
  if (onOptionSelected != null) {
    onOptionSelected!(selectedValues);
  }
  notifyListeners();
}