KDNode constructor

KDNode(
  1. Node node, {
  2. KDNode? left,
  3. KDNode? right,
})

Implementation

KDNode(this.node, {this.left, this.right});