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 route, Route? previousRoute) {
if (previousRoute != null) {
MaskController.instance.setRouteCovered(previousRoute, false);
}
MaskController.instance.forgetRoute(route);
unawaited(_pauseRecordingForNavigation());
_attachTransitionListener(route);
super.didPop(route, previousRoute);
}