ClientAccountRegisterContext constructor

ClientAccountRegisterContext({
  1. required String email,
  2. required String password,
  3. String? firstName,
  4. String? lastName,
  5. ClientSex? sex,
  6. String? phone,
  7. String? company,
  8. String? address,
  9. String? city,
  10. String? zipcode,
  11. String? countrycode,
  12. String? province,
  13. String? uuid,
  14. String? customId,
  15. ClientAgreements? agreements,
  16. Map<String, Object>? attributes,
})

Implementation

ClientAccountRegisterContext(
    {required this.email,
    required this.password,
    this.firstName,
    this.lastName,
    this.sex,
    this.phone,
    this.company,
    this.address,
    this.city,
    this.zipcode,
    this.countrycode,
    this.province,
    this.uuid,
    this.customId,
    this.agreements,
    this.attributes});