containsKey method

bool containsKey(
  1. T value
)

Returns true if the value is in the cache.

Implementation

bool containsKey(T value) => _cache.containsKey(value);