nextEntry method - DoubleLinkedQueueEntry class - dart:collection library (original) (raw)
DoubleLinkedQueueEntry<E>? nextEntry()
The next entry, or null
if there is none.
Implementation
DoubleLinkedQueueEntry<E>? nextEntry() => _nextLink;
DoubleLinkedQueueEntry<E>? nextEntry()
The next entry, or null
if there is none.
DoubleLinkedQueueEntry<E>? nextEntry() => _nextLink;