InvoiceShippingDetails constructor

const InvoiceShippingDetails({
  1. required AccountSupportAddress address,
  2. required String name,
  3. String? phone,
})

recipient_shipping_with_optional_fields_address

Shipping details for the invoice. The Invoice PDF will use the `shipping_details` value if it is set, otherwise the PDF will render the shipping address from the customer.

Implementation

const InvoiceShippingDetails({
  required this.address,
  required this.name,
  this.phone,
});