AddressDetails constructor

AddressDetails({
  1. String? soldToParty,
  2. String? shipToParty,
  3. String? billToParty,
  4. String? payer,
  5. String? soldToPartyEntityId,
  6. String? shipToPartyEntityId,
  7. String? billToPartyEntityId,
  8. String? payerEntityId,
  9. List<Address>? address,
})

Implementation

AddressDetails(
    {this.soldToParty,
    this.shipToParty,
    this.billToParty,
    this.payer,
    this.soldToPartyEntityId,
    this.shipToPartyEntityId,
    this.billToPartyEntityId,
    this.payerEntityId,
    this.address});