User constructor

User({
  1. List<String>? businessPhones,
  2. String? displayName,
  3. String? givenName,
  4. String? jobTitle,
  5. String? mail,
  6. String? mobilePhone,
  7. String? officeLocation,
  8. String? preferredLanguage,
  9. String? surname,
  10. String? userPrincipalName,
  11. String? id,
})

Constructs a User with the provided properties.

All properties can be null, representing an unknown or not provided value.

Implementation

User({
  this.businessPhones,
  this.displayName,
  this.givenName,
  this.jobTitle,
  this.mail,
  this.mobilePhone,
  this.officeLocation,
  this.preferredLanguage,
  this.surname,
  this.userPrincipalName,
  this.id,
});