NationalAddress constructor

const NationalAddress({
  1. AddressType? addressType,
  2. String? addressLine,
  3. String? buildingNumber,
  4. String? buildingName,
  5. String? floor,
  6. String? streetName,
  7. String? districtName,
  8. String? postBox,
  9. String? townName,
  10. String? region,
  11. String? country,
})

Implementation

const NationalAddress({
  this.addressType,
  this.addressLine,
  this.buildingNumber,
  this.buildingName,
  this.floor,
  this.streetName,
  this.districtName,
  this.postBox,
  this.townName,
  this.region,
  this.country,
});