containsKey method

  1. @override
bool containsKey(
  1. Object key
)
override

Gets a value indicating whether the cache entry associated with key exists.

Returns true if the cache contains an entry with the given key.

Implementation

@override
bool containsKey(Object key) => _entries.containsKey(key);