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) {
// Popup dismissals don't trigger page visible notifications
if (!_shouldHandle(route)) return;
_notifyPopNext(previousRoute);
}