clearAllSelections method

void clearAllSelections()

Clears all selected items.

Implementation

void clearAllSelections() {
  if (_selectedItems.isNotEmpty) {
    _selectedItems.clear();
    _notifySelectionChanged();
    notifyListeners();
  }
}