Node constructor

Node(
  1. String name, {
  2. Size? size,
  3. Offset? position,
  4. Subtree? subtree,
})

Implementation

Node(this.name, {this.size, this.position, this.subtree});