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