didPopNext method
Called when the top route has been popped off, and the current route shows up.
Implementation
@override
void didPopNext() {
if (!_isTop) {
_isTop = true;
onResume(_routeName ?? "", _arguments);
_pageLifecycle?.onResume(_routeName ?? "", _arguments);
}
super.didPopNext();
}