decryptContent static method
Implementation
static Future<List<int>?> decryptContent(
CacheOptions options,
List<int>? bytes,
) {
final checkedCipher = options.cipher;
if (bytes != null && checkedCipher != null) {
return checkedCipher.decrypt(bytes);
}
return Future.value(bytes);
}