matchRoute method

AppRouteMatch<dynamic, RouteParams>? matchRoute(
  1. String? path
)

Finds a defined AppRoute for the path value, or null if none could be found

Implementation

AppRouteMatch? matchRoute(String? path) {
  return _routeTree.matchRoute(path);
}