User constructor

User({
  1. String? did,
  2. UserProfile? profile,
  3. String? name,
  4. String? about,
  5. String? verificationProof,
})

Implementation

User({
  this.did,
  this.profile,
  this.name,
  this.about,
  this.verificationProof,
});