onChildRemoved method
Callback used to notify a node that one of it's children has been removed.
Implementation
@override
void onChildRemoved(String name, Node node) {
if (onChildRemovedCallback != null) {
onChildRemovedCallback!(name, node);
}
}