EncryptionService constructor
EncryptionService(
- EncryptionConfig config
Implementation
EncryptionService(this.config) {
if (config.enabled) {
_key = encrypt.Key(Uint8List.fromList(config.key));
}
}