clearSelection method

void clearSelection()

Clears all selected items

Implementation

void clearSelection() {
  if (_isDisposed || _selectedItems.isEmpty) return;
  _selectedItems.clear();
  _callbacks?.onSelectionChanged?.call(selectedItems);
}