hasKey method

bool hasKey(
  1. T key
)

Returns true if cache contains key

Implementation

bool hasKey(T key) => _cache.containsKey(key);