containsKey method

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

Only returns true if the key is contained in the strong reference list and as such ensured to be available for most caches (except expirationCache)

Implementation

@override
bool containsKey(K key) {
  return _internalMap.containsKey(key);
}