UserProfile constructor

UserProfile({
  1. String? uuid,
  2. String? createdTs,
  3. String? updatedTs,
  4. String? createdBy,
  5. String? updatedBy,
  6. int? version,
  7. String? id,
  8. CoverMedia? media,
  9. String? extProfileImgUrl,
  10. String? firstName,
  11. String? lastName,
  12. int? gender,
  13. int? yob,
  14. List<AuthProvider>? authProviders,
  15. HomeLocation? homeLocation,
  16. List<ContactPoint>? contactPoints,
  17. String? premiumUntilTs,
  18. String? type,
  19. UserProfileMetadata? metadata,
  20. String? registeredTs,
  21. List<Device>? devices,
  22. List<UserCommunit>? userCommunities,
  23. List<UserCommunit>? userCommunitiesNegative,
  24. List<PolicyAcceptance>? policyAcceptances,
  25. bool? active,
})

Implementation

UserProfile({
  this.uuid,
  this.createdTs,
  this.updatedTs,
  this.createdBy,
  this.updatedBy,
  this.version,
  this.id,
  this.media,
  this.extProfileImgUrl,
  this.firstName,
  this.lastName,
  this.gender,
  this.yob,
  this.authProviders,
  this.homeLocation,
  this.contactPoints,
  this.premiumUntilTs,
  this.type,
  this.metadata,
  this.registeredTs,
  this.devices,
  this.userCommunities,
  this.userCommunitiesNegative,
  this.policyAcceptances,
  this.active,
});