Returns true if other is in the same parent of this node.
true
other
@override bool isInSameParent(Node other) { var parent = node!.parent; return parent != null && parent == other.parent; }