clearSelection method

void clearSelection()

Implementation

void clearSelection() {
  if (_selectedIds.isNotEmpty) {
    _selectedIds.clear();
    notifyListeners();
  }
}