containsKey method

bool containsKey(
  1. K key
)

Checks whether the cache has any value under key.

Implementation

bool containsKey(K key) => _cache.containsKey(key);