addLast method

void addLast (E value)
override

Adds value at the end of the queue.

Implementation

void addLast(E value) => delegate.addLast(value);