CustomerShipping constructor

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

customer_shipping

The customer's shipping information. Appears on invoices emailed to this customer.

Implementation

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