EncryptionOptions.aes256 constructor
EncryptionOptions.aes256({
- required String key,
Creates a new instance of EncryptionOptions with AES-256 encryption.
Implementation
factory EncryptionOptions.aes256({required String key}) {
return EncryptionOptions(
algorithm: EncryptionAlgorithm.aes256,
key: key,
);
}