addLast method
Adds value at the end of the queue.
Implementation
@override
void addLast(T value) {
this.value.addLast(value);
set(this.value, force: true);
}
Adds value at the end of the queue.
@override
void addLast(T value) {
this.value.addLast(value);
set(this.value, force: true);
}