BinaryNode constructor

BinaryNode(
  1. BinaryNode? parent,
  2. TreeData props,
  3. TreeMapNode layoutNode, {
  4. int deep = 0,
  5. int maxDeep = -1,
  6. num value = 0,
})

Implementation

BinaryNode(super.parent, this.props, this.layoutNode, {super.deep, super.maxDeep, super.value});