get method

dynamic get(
  1. String key
)

Retrieve an item from the cache

Implementation

dynamic get(String key) {
  return _cache[key];
}