remove method

void remove(
  1. String id
)

Removes the item with the given id from the selection.

Implementation

void remove(String id) {
  value.remove(id);
  notifyListeners();
}