PersonalDetails constructor

PersonalDetails({
  1. String? extra,
  2. int? client_id,
  3. string? first_name,
  4. string? middle_name,
  5. string? last_name,
  6. string? native_first_name,
  7. string? native_middle_name,
  8. string? native_last_name,
  9. Date? birthdate,
  10. string? gender,
  11. string? country_code,
  12. string? residence_country_code,
})

Implementation

PersonalDetails({
  super.extra,
  super.client_id,
  this.first_name,
  this.middle_name,
  this.last_name,
  this.native_first_name,
  this.native_middle_name,
  this.native_last_name,
  this.birthdate,
  this.gender,
  this.country_code,
  this.residence_country_code,
});