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