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