TreeNode constructor

TreeNode(
  1. String key,
  2. dynamic value,
  3. int depth
)

Implementation

TreeNode(this.key, dynamic value, this.depth) : this._value = value;