match method Null safety
- String path
Finds a defined AppRoute for the path value. If no AppRoute definition was found then function will return null.
Implementation
AppRouteMatch? match(String path) {
return _routeTree.matchRoute(path);
}
Finds a defined AppRoute for the path value. If no AppRoute definition was found then function will return null.
AppRouteMatch? match(String path) {
return _routeTree.matchRoute(path);
}