void add(
E element
)

Adds value at the end of the queue.

Source

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