ProfileSignupRequest constructor

const ProfileSignupRequest({
  1. required String password,
  2. String? email,
  3. String? phoneNumber,
  4. String? givenName,
  5. String? middleName,
  6. String? familyName,
  7. String? name,
  8. String? nickname,
  9. String? birthdate,
  10. String? profileURL,
  11. String? picture,
  12. String? username,
  13. String? gender,
  14. String? company,
  15. List<ProfileAddress>? addresses,
  16. String? locale,
  17. String? bio,
  18. Map<String, Object?>? customFields,
  19. Map<String, Consent>? consents,
  20. bool? liteOnly,
})

ProfileSignupRequest default constructor

Implementation

const ProfileSignupRequest({
  required this.password,
  this.email,
  this.phoneNumber,
  this.givenName,
  this.middleName,
  this.familyName,
  this.name,
  this.nickname,
  this.birthdate,
  this.profileURL,
  this.picture,
  this.username,
  this.gender,
  this.company,
  this.addresses,
  this.locale,
  this.bio,
  this.customFields,
  this.consents,
  this.liteOnly,
});