toggleSearchVisibility method

void toggleSearchVisibility()

Implementation

void toggleSearchVisibility() {
  _isSearchVisible = !_isSearchVisible;
  if (!_isSearchVisible) {
    _searchQuery = '';
    _totalMatches = 0;
  }
  notifyListeners();
}