containsKey method
Whether the cache contains a live (non-expired) entry for key.
Implementation
bool containsKey(K key) => get(key) != null;
Whether the cache contains a live (non-expired) entry for key.
bool containsKey(K key) => get(key) != null;