didPushRoute method

  1. @override
Future<bool> didPushRoute(
  1. String route
)
override

Called when the host tells the application to push a new route onto the navigator.

On web, this is called when the user changes the url manually, or clicks the back or forward buttons

Implementation

@override
Future<bool> didPushRoute(String route) {
  log.info("platform:didPushRoute: $route");
  return handleNewRoute(route);
}