push method

void push(
  1. T value
)

Pushes an element onto the back of the queue.

Implementation

void push(T value) {
  _container.insertLast(value);
}