EncryptionConfig constructor Null safety

EncryptionConfig(
  1. {EncryptionMode? encryptionMode,
  2. String? encryptionKey,
  3. List<int>? encryptionKdfSalt}
)

Constructs a EncryptionConfig

Implementation

EncryptionConfig({
  this.encryptionMode,
  this.encryptionKey,
  this.encryptionKdfSalt,
});