User constructor

User({
  1. String? displayName,
  2. String? domainId,
  3. bool? isAnonymous,
  4. String? name,
  5. String? type,
})

Implementation

User({
  this.displayName,
  this.domainId,
  this.isAnonymous,
  this.name,
  this.type,
});