push method

void push(
  1. T element
)

Implementation

void push(final T element) => this._underlyingQueue.addLast(element);