CacheCipher class

Constructors

CacheCipher({required Decrypt decrypt, required Encrypt encrypt})
const

Properties

decrypt Decrypt
Optional method to decrypt cache content
final
encrypt Encrypt
Optional method to encrypt cache content
final
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

decryptContent(CacheOptions options, List<int>? bytes) Future<List<int>?>
encryptContent(CacheOptions options, List<int>? bytes) Future<List<int>?>