Node<T extends Object?> constructor

Node<T extends Object?>(
  1. T value
)

Creates an instance of the root node of the JSON document value.

Implementation

Node(this.value)
    : parent = null,
      key = null,
      index = null;