hasKey method

bool hasKey(
  1. String key
)

Check if key exists in cache

Implementation

bool hasKey(String key) {
  return _cacheInstance.containsKey(key);
}