didPush method
Called when the current route has been pushed.
Implementation
@override
void didPush() {
if (!_isTop) {
_isTop = true;
onResume(_routeName ?? "", _arguments);
_pageLifecycle?.onResume(_routeName ?? "", _arguments);
}
super.didPush();
}