Add a child node.
@override void add(Node child) { if (child._parent != null) { throw Exception('Child already has a parent'); } children.add(child); child._parent = this; }