containsKey method

bool containsKey(
  1. K key
)

Returns true if the cache contains the key

Implementation

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