push method

void push(
  1. T item
)

Implementation

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