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