User constructor

User({
  1. String? phone,
  2. String? userId,
  3. String? email,
  4. String? identity,
  5. String? displayName,
  6. String? channel,
})

Implementation

User({
  this.phone,
  this.userId,
  this.email,
  this.identity,
  this.displayName,
  this.channel,
});