append method - DoubleLinkedQueueEntry class - dart:collection library (original) (raw)
void append(
- E e )
Appends the given element e
as entry just after this entry.
Implementation
void append(E e) {
DoubleLinkedQueueEntry<E>(e)._link(this, _nextLink);
}