QuickbooksPhysicalAddress constructor

QuickbooksPhysicalAddress({
  1. String? id,
  2. String? line1,
  3. String? line2,
  4. String? line3,
  5. String? line4,
  6. String? line5,
  7. String? city,
  8. String? country,
  9. String? countrySubDivisionCode,
  10. String? postalCode,
  11. double? lat,
  12. double? long,
})

Implementation

QuickbooksPhysicalAddress({
  this.id,
  this.line1,
  this.line2,
  this.line3,
  this.line4,
  this.line5,
  this.city,
  this.country,
  this.countrySubDivisionCode,
  this.postalCode,
  this.lat,
  this.long,
});