containsKey method
Checks if the cache contains key.
This method does NOT update the recentness of the key.
Implementation
bool containsKey(K key) => _cache.containsKey(key);
Checks if the cache contains key.
This method does NOT update the recentness of the key.
bool containsKey(K key) => _cache.containsKey(key);