push method

void push(
  1. T e
)

Pushes e onto the top of the stack.

Implementation

void push(T e) => _list.addLast(e);