EncryptedPrivateKeyModel constructor

EncryptedPrivateKeyModel({
  1. String? ciphertext,
  2. String? nonce,
  3. String? version,
  4. dynamic encryptedPassword,
  5. String? ephemPublicKey,
  6. String? salt,
  7. String? preKey,
})

Implementation

EncryptedPrivateKeyModel({
  this.ciphertext,
  this.nonce,
  this.version,
  this.encryptedPassword,
  this.ephemPublicKey,
  this.salt,
  this.preKey,
});