BinaryTreeNode<T> constructor

BinaryTreeNode<T>(
  1. T value, {
  2. BinaryTreeNode<T>? left,
  3. BinaryTreeNode<T>? right,
})

Implementation

BinaryTreeNode(this.value, {this.left, this.right});