User constructor

User({
  1. DateTime? createdTimestamp,
  2. String? emailAddress,
  3. String? givenName,
  4. String? id,
  5. LocaleType? locale,
  6. DateTime? modifiedTimestamp,
  7. String? organizationId,
  8. String? recycleBinFolderId,
  9. String? rootFolderId,
  10. UserStatusType? status,
  11. UserStorageMetadata? storage,
  12. String? surname,
  13. String? timeZoneId,
  14. UserType? type,
  15. String? username,
})

Implementation

User({
  this.createdTimestamp,
  this.emailAddress,
  this.givenName,
  this.id,
  this.locale,
  this.modifiedTimestamp,
  this.organizationId,
  this.recycleBinFolderId,
  this.rootFolderId,
  this.status,
  this.storage,
  this.surname,
  this.timeZoneId,
  this.type,
  this.username,
});