1. @override
void onChildAdded(String name, Node node)

Callback used to notify a node that a child has been added to it.

Source

@override
void onChildAdded(String name, Node node) {
  if (onChildAddedCallback != null) {
    onChildAddedCallback(name, node);
  }
}