getRouteConfig method

SimApiRouteConfig? getRouteConfig(
  1. String route
)

Retrieves the configuration for a given route.

  • route: The route for which the configuration is to be retrieved.

Returns:

  • The SimApiRouteConfig associated with the route, or null if no configuration is found.

Implementation

SimApiRouteConfig? getRouteConfig(String route) {
  return _routes[route];
}