UserAdModel constructor

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

Implementation

UserAdModel({
  this.id,
  this.displayName,
  this.givenName,
  this.surname,
  this.userPrincipalName,
  this.mail,
  this.accessToken,
  this.expiresOn,
  this.businessPhones,
  this.odataContext,
  this.jobTitle,
  this.mobilePhone,
  this.officeLocation,
  this.preferredLanguage,
});