nextEntry method - DoubleLinkedQueueEntry class - dart:collection library (original) (raw)

description

DoubleLinkedQueueEntry<E>? nextEntry()

The next entry, or null if there is none.

Implementation

DoubleLinkedQueueEntry<E>? nextEntry() => _nextLink;