deselectItem method

void deselectItem(
  1. String id
)

Implementation

void deselectItem(String id) {
  if (_selectedIds.remove(id)) {
    notifyListeners();
  }
}