Remove a child node.
@override void remove(Node child) { if (child._parent != this) { throw Exception('Child is not attached to this node'); } children.remove(child); child._parent = null; }