containsKey method

bool containsKey(
  1. K key
)

Whether the cache contains an item with key.

Implementation

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