containsKey method

  1. @override
bool containsKey(
  1. K key
)
inherited

Check if the cache contains a specific entry. It is better to use get and check for null-returns

Implementation

@override
bool containsKey(K key) => storage.containsKey(key);