Creates a new doubly linked list node instance.
If provided, automatically connects the node with its previous and next nodes.
The type of the node.
Optional
The previous node, or null if the node has no previous connection.
null
The next node, or null if the node has no next connection.
A new doubly linked list node instance with the specified connections.
Creates a new doubly linked list node instance.
If provided, automatically connects the node with its previous and next nodes.