DoublyLinkedListNode<T> constructor
DoublyLinkedListNode<T> (
- 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);