push method

void push (T item)

Implementation

void push(T item) {
  _data.add(item);
}