restoreRouteInformation method

  1. @override
RouteInformation? restoreRouteInformation(
  1. String path
)
override

Restore the route information from the given configuration.

This may return null, in which case the browser history will not be updated and state restoration is disabled. See Router's documentation for details.

The parseRouteInformation method must produce an equivalent configuration when passed this method's return value.

Implementation

@override
RouteInformation? restoreRouteInformation(String path) => RouteInformation(location: path);