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

Callback used to notify a node that one of it's children has been removed.

Source

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