CryptoEncryptParams constructor

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

Implementation

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