didPushRoute method Null safety
- String route
override
Called when the host tells the application to push a new route onto the navigator.
Observers are expected to return true if they were able to handle the notification. Observers are notified in registration order until one returns true.
This method exposes the pushRoute
notification from
SystemChannels.navigation.
Implementation
@override
Future<bool> didPushRoute(String route) async {
assert(hasListeners);
_platformReportsNewRouteInformation(RouteInformation(location: route));
return true;
}