Account constructor

Account(
  1. bool? profileNeedsAgreement,
  2. Profile? profile,
  3. bool? emailNeedsAgreement,
  4. bool? isEmailVerified,
  5. bool? isEmailValid,
  6. String? email,
  7. bool? ageRangeNeedsAgreement,
  8. AgeRange? ageRange,
  9. bool? birthyearNeedsAgreement,
  10. String? birthyear,
  11. bool? birthdayNeedsAgreement,
  12. String? birthday,
  13. BirthdayType? birthdayType,
  14. bool? genderNeedsAgreement,
  15. Gender? gender,
  16. bool? ciNeedsAgreement,
  17. String? ci,
  18. DateTime? ciAuthenticatedAt,
  19. bool? legalNameNeedsAgreement,
  20. String? legalName,
  21. bool? legalBirthDateNeedsAgreement,
  22. String? legalBirthDate,
  23. bool? legalGenderNeedsAgreement,
  24. Gender? legalGender,
  25. bool? phoneNumberNeedsAgreement,
  26. String? phoneNumber,
  27. bool? isKoreanNeedsAgreement,
  28. bool? isKorean,
)

Implementation

Account(
    this.profileNeedsAgreement,
    this.profile,
    this.emailNeedsAgreement,
    this.isEmailVerified,
    this.isEmailValid,
    this.email,
    this.ageRangeNeedsAgreement,
    this.ageRange,
    this.birthyearNeedsAgreement,
    this.birthyear,
    this.birthdayNeedsAgreement,
    this.birthday,
    this.birthdayType,
    this.genderNeedsAgreement,
    this.gender,
    this.ciNeedsAgreement,
    this.ci,
    this.ciAuthenticatedAt,
    this.legalNameNeedsAgreement,
    this.legalName,
    this.legalBirthDateNeedsAgreement,
    this.legalBirthDate,
    this.legalGenderNeedsAgreement,
    this.legalGender,
    this.phoneNumberNeedsAgreement,
    this.phoneNumber,
    this.isKoreanNeedsAgreement,
    this.isKorean);