InvoiceShippingDetails constructor
      const
      InvoiceShippingDetails({ 
    
- required AccountSupportAddress address,
- required String name,
- 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,
});