add method

void add (T item)

Adds an item to the end of this list.

Implementation

void add(T item) {
  _isDirty = true;
  _list.add(item);
}