DoublyLinkedListNode<T> constructor

DoublyLinkedListNode<T>(
  1. T value
)

Creates a new doubly linked list node with the given value

value - The data to store in this node

Implementation

DoublyLinkedListNode(this.value);