addLast method

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

Adds value at the end of the queue.

Implementation

@override
void addLast(T value) {
  this.value.addLast(value);
  set(this.value, force: true);
}