ExplodedAddress constructor

ExplodedAddress({
  1. String? addressStreet,
  2. String? addressNumber,
  3. String? addressNeighborhood,
  4. String? addressState,
  5. String? addressCity,
  6. String? addressCountry,
})

Implementation

ExplodedAddress({
  this.addressStreet,
  this.addressNumber,
  this.addressNeighborhood,
  this.addressState,
  this.addressCity,
  this.addressCountry,
});