getMap method
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
nullif no values are found.
Implementation
Map<TId, dynamic>? getMap(String route) {
return _data[route];
}