EncryptParams constructor

EncryptParams(
  1. String message,
  2. String symKey, {
  3. int? type,
  4. String? iv,
  5. String? senderPublicKey,
})

Implementation

EncryptParams(
  this.message,
  this.symKey, {
  this.type,
  this.iv,
  this.senderPublicKey,
});