getData method
Gets data from the cache
id
is the unique identifier for the data
Implementation
dynamic getData(String id) {
return _cache.get(_dataKeyPrefix + id);
}
Gets data from the cache
id
is the unique identifier for the data
dynamic getData(String id) {
return _cache.get(_dataKeyPrefix + id);
}