Addresses constructor

Addresses({
  1. bool? isPrimary,
  2. String? fullAddress,
  3. String? addressId,
  4. String? line1,
  5. String? line2,
  6. String? city,
  7. String? state,
  8. String? postalCode,
  9. String? country,
  10. bool? isSelected,
})

Implementation

Addresses({
  this.isPrimary,
  this.fullAddress,
  this.addressId,
  this.line1,
  this.line2,
  this.city,
  this.state,
  this.postalCode,
  this.country,
  this.isSelected,
});