fromRouteInformation method
Implementation
AppRouteMatch? fromRouteInformation(RouteInformation info) {
var matchRoute = routes.matchRoute(info.location!);
if (matchRoute?.resolvedUri == null) return null;
return matchRoute;
}
AppRouteMatch? fromRouteInformation(RouteInformation info) {
var matchRoute = routes.matchRoute(info.location!);
if (matchRoute?.resolvedUri == null) return null;
return matchRoute;
}