add method

void add(
  1. int id
)

Adds the specified id

Implementation

void add(int id) {
  _ids.add(id);
  _text = null;
}