addLast method Null safety
- E value
override
Adds value
at the end of the queue.
Implementation
@override
void addLast(E value) {
_base.addLast(value);
}
Adds value
at the end of the queue.
@override
void addLast(E value) {
_base.addLast(value);
}