LinkedListNode<T> constructor
LinkedListNode<T> (
- T value
Creates a new linked list node with the given value
value - The data to store in this node
Implementation
LinkedListNode(this.value);