addLast method

  1. @override
void addLast(
  1. E element
)
override

Adds value at the end of the queue.

Implementation

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