getMap method

Map<TId, dynamic>? getMap(
  1. String route
)

Retrieves the map of values for a given route.

  • route: The route for which the map of values should be retrieved.

Returns:

  • A map of ID-value pairs for the route, or null if no values are found.

Implementation

Map<TId, dynamic>? getMap(String route) {
  return _data[route];
}