get method
Retrieves a value for a given route and ID.
- route: The route from which the value should be retrieved.
- id: The ID associated with the value.
Returns:
- The value associated with the route and ID, or
nullif not found.
Implementation
dynamic get(String route, TId id) {
return _data[route]?[id];
}