deselect method

void deselect(
  1. T item
)

Implementation

void deselect(T item) {
  if (_selected.remove(identity(item))) notifyListeners();
}