getData method

dynamic getData(
  1. String id
)

Gets data from the cache

id is the unique identifier for the data

Implementation

dynamic getData(String id) {
  return _cache.get(_dataKeyPrefix + id);
}