addLast method

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

Adds value at the end of the queue.

Implementation

@override
void addLast(E value) {
  _base.addLast(value);
}