UserV2 constructor

UserV2({
  1. required int msgSent,
  2. required int maxMsgPersisted,
  3. required String did,
  4. required String wallets,
  5. required UserProfile profile,
  6. String? encryptedPrivateKey,
  7. String? publicKey,
  8. String? verificationProof,
  9. String? origin,
})

Implementation

UserV2({
  required this.msgSent,
  required this.maxMsgPersisted,
  required this.did,
  required this.wallets,
  required this.profile,
  this.encryptedPrivateKey,
  this.publicKey,
  this.verificationProof,
  this.origin,
});