addLast method

void addLast (E element)
override

Adds value at the end of the queue.

Implementation

void addLast(E element) {
  _add(element);
}