didPop method
The Navigator popped route.
The route immediately below that one, and thus the newly active
route, is previousRoute.
Implementation
@override
void didPop(Route<dynamic> route, Route<dynamic>? previousRoute) {
super.didPop(route, previousRoute);
// Only record if both routes are PageRoute
if (route is PageRoute && previousRoute is PageRoute) {
_recordNavigation('didPop', route, previousRoute);
}
}