Address constructor

Address({
  1. String? streetName,
  2. String? postalCode,
  3. String? salesTerritory1,
  4. String? salesTerritory2,
  5. String? salesTerritory3,
  6. String? salesTerritory1Name,
  7. String? salesTerritory2Name,
  8. String? salesTerritory3Name,
  9. String? salesTerritory4Name,
  10. String? building,
  11. String? buildingNe,
  12. bool? defaultValue,
  13. bool? defaultAddress,
})

Implementation

Address(
    {this.streetName,
    this.postalCode,
    this.salesTerritory1,
    this.salesTerritory2,
    this.salesTerritory3,
    this.salesTerritory1Name,
    this.salesTerritory2Name,
    this.salesTerritory3Name,
    this.salesTerritory4Name,
    this.building,
    this.buildingNe,
    this.defaultValue,
    this.defaultAddress});