didPush method
The Navigator pushed route.
The route immediately below that one, and thus the previously active
route, is previousRoute.
Implementation
@override
void didPush(Route<dynamic> route, Route<dynamic>? previousRoute) {
super.didPush(route, previousRoute);
if (_isRouteIgnored(route) ||
previousRoute != null && _isRouteIgnored(previousRoute)) {
return;
}
_setCurrentRouteName(route);
_setCurrentRouteNameAsTransaction(route);
_addBreadcrumb(
type: 'didPush',
from: previousRoute?.settings,
to: route.settings,
);
// Clearing the display tracker here is safe since didPush happens before the Widget is built
_timeToDisplayTracker?.clear();
DateTime timestamp = _hub.options.clock();
_finishTimeToDisplayTracking(endTimestamp: timestamp);
_startTimeToDisplayTracking(route, timestamp);
}