didPush method

  1. @override
void didPush()
override

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();
}