readContent method
Implementation
Future<CacheResponse> readContent(CacheOptions options) async {
return copyWith(
content: await CacheCipher.decryptContent(options, content),
headers: await CacheCipher.decryptContent(options, headers),
);
}