DataNode<T> constructor

DataNode<T>(
  1. T data
)

Constructs a DataNode holding the specified argument data.

  • data is some data of argument type T stored by the DataNode.

Implementation

DataNode(final this.data);