Node constructor

Node(
  1. String value,
  2. Node? parent
)

Implementation

Node(this.value, this.parent);