push method

void push(
  1. DartItem item
)

Push an item.

Implementation

void push(DartItem item) {
  _stack.push(item);
}