DoubleLinkedQueueEntry<E> constructor Null safety

DoubleLinkedQueueEntry<E>(
  1. E element
)

Creates a new entry with the given element.

Implementation

DoubleLinkedQueueEntry(this.element);