didPopNext method

  1. @override
void didPopNext(
  1. Route nextRoute
)
override

The given route, which was above this one, has been popped off the navigator.

This route is now the current route (isCurrent is now true), and there is no next route.

Implementation

@override
void didPopNext(Route<dynamic> nextRoute) {
  super.didPopNext(nextRoute);
  changedInternalState();
}