PersonalData constructor

PersonalData({
  1. int? residentTypeId,
  2. int? genderId,
  3. String? birthdate,
  4. String? secretWord,
  5. IndividualName? individualName,
  6. IdentityDocument? identityDocument,
  7. RegistrationAddress? registrationAddress,
})

Implementation

PersonalData({
  this.residentTypeId,
  this.genderId,
  this.birthdate,
  this.secretWord,
  this.individualName,
  this.identityDocument,
  this.registrationAddress,
});