User constructor

User({
  1. bool active,
  2. String birthDate,
  3. String cleanSpeakId,
  4. Map<String, dynamic> data,
  5. String email,
  6. num expiry,
  7. String firstName,
  8. String fullName,
  9. String imageUrl,
  10. num insertInstant,
  11. String lastName,
  12. num lastUpdateInstant,
  13. List<GroupMember> memberships,
  14. String middleName,
  15. String mobilePhone,
  16. String parentEmail,
  17. List<String> preferredLanguages,
  18. List<UserRegistration> registrations,
  19. String tenantId,
  20. String timezone,
  21. UserTwoFactorConfiguration twoFactor,
})

Implementation

User(
    {this.active,
    this.birthDate,
    this.cleanSpeakId,
    this.data,
    this.email,
    this.expiry,
    this.firstName,
    this.fullName,
    this.imageUrl,
    this.insertInstant,
    this.lastName,
    this.lastUpdateInstant,
    this.memberships,
    this.middleName,
    this.mobilePhone,
    this.parentEmail,
    this.preferredLanguages,
    this.registrations,
    this.tenantId,
    this.timezone,
    this.twoFactor});