hasKey method

bool hasKey(
  1. String key
)

Whether key is currently present in the cache.

Implementation

bool hasKey(String key) => _data.containsKey(key);