add method

void add(
  1. String id
)

Adds the item with the given id to the selection.

Implementation

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