User constructor

User({
  1. String? accountIdentifier,
  2. String? accountType,
  3. String? displayName,
  4. String? id,
  5. String? managementType,
  6. String? primaryEmail,
})

Implementation

User({
  this.accountIdentifier,
  this.accountType,
  this.displayName,
  this.id,
  this.managementType,
  this.primaryEmail,
});