fixChildren method

void fixChildren()

Implementation

void fixChildren() {
  if (!isLeaf) {
    for (final entry in entries) {
      entry.child!.parent = this;
    }
  }
}