cache method

void cache(
  1. String key,
  2. dynamic object
)

Implementation

void cache(String key, dynamic object) {
  _cache[key] = object;
}