matchRoute method

FRouteMatch matchRoute(
  1. RouteInformation routeInformation
)

Implementation

FRouteMatch matchRoute(RouteInformation routeInformation) {
  return tryMatchRoute(routeInformation) ??
      FRouteMatch.page(AppRouteMatch.ofMap(routes.notFoundRoute!, {}), this);
}