exists method

bool exists(
  1. String checksum
)

Indicates whether checksum is in the cache.

Implementation

bool exists(String checksum) =>
    FIFOCache.exists(checksum) || hashes.contains(checksum);