didPush method
The Navigator pushed route
.
The route immediately below that one, and thus the previously active
route, is previousRoute
.
Implementation
@override
// ignore: unnecessary_overrides
void didPush(Route<dynamic> route, Route<dynamic>? previousRoute) {
this.previousRoute = previousRoute;
currentRoute = route;
super.didPush(route, previousRoute);
}