readContent method

Future<CacheResponse> readContent(
  1. CacheOptions options
)

Implementation

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