executeOnViewGroupUpdate method
void
executeOnViewGroupUpdate()
this method executes if this screen is part of ViewGroup and onViewGroupUpdate is defined in View
Implementation
void executeOnViewGroupUpdate() {
if (widget._pageModel.viewBehavior.onViewGroupUpdate != null) {
ScreenController().executeActionWithScope(
context,
_scopeManager,
widget._pageModel.viewBehavior.onViewGroupUpdate!);
}
}