containsKey method

bool containsKey(
  1. K key
)

Checks if the cache contains key.

This method does NOT update the recentness of the key.

Implementation

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