removeChild method
Implementation
void removeChild(Node child) {
if (_children.remove(child)) {
child._parent = null;
child._markWorldDirty();
// The child no longer contributes to this subtree's union AABB
_markAabbDirtyUp();
}
}