- @override
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);
}
}
Callback used to notify a node that one of it's children has been removed.
@override
void onChildRemoved(String name, Node node) {
if (onChildRemovedCallback != null) {
onChildRemovedCallback(name, node);
}
}