EncryptionService constructor

EncryptionService(
  1. EncryptionConfig config
)

Implementation

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