deselect method

void deselect(
  1. T value
)

Removes value from this controller if it is present.

Implementation

void deselect(T value) {
  if (!_values.containsKey(value)) return;
  _values.remove(value);
  notifyListeners();
}