addFirst method
void
addFirst(
- E element
Adds an element to the front of the queue.
Implementation
void addFirst(E element) {
_addFirst(element);
}
Adds an element to the front of the queue.
void addFirst(E element) {
_addFirst(element);
}