void add(E value)

Adds value at the end of the queue.

Source

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