SourceShipping constructor
const
SourceShipping({
- required SessionShippingAddress address,
- String? carrier,
- String? name,
- String? phone,
- String? trackingNumber,
order_shipping
Shipping address for the order. Required if any of the SKUs are for products that have `shippable` set to true.
Implementation
const SourceShipping({
required this.address,
this.carrier,
this.name,
this.phone,
this.trackingNumber,
});