LinkedListNode<T> constructor

LinkedListNode<T>(
  1. T value
)

Creates a new linked list node with the given value

value - The data to store in this node

Implementation

LinkedListNode(this.value);