RegistrationAddress constructor

RegistrationAddress({
  1. City? city,
  2. Country? country,
  3. String? appartment,
  4. String? house,
  5. String? block,
  6. Province? province,
  7. Street? street,
  8. DistrictOfProvince? districtOfProvince,
})

Implementation

RegistrationAddress({
  this.city,
  this.country,
  this.appartment,
  this.house,
  this.block,
  this.province,
  this.street,
  this.districtOfProvince,
});