findRouteByUriTemplate method

AppRoute<dynamic, RouteParams>? findRouteByUriTemplate(
  1. String? uriTemplate
)

Returns an appRoute using only a uriTemplate. This does not attempt to parse any parameters

Implementation

AppRoute? findRouteByUriTemplate(String? uriTemplate) {
  return _routeTree.findRouteByKey(uriTemplate);
}