OrderInfo constructor
const
OrderInfo({
- String? name,
- String? phoneNumber,
- String? email,
- ShippingAddress? shippingAddress,
Creates a new OrderInfo object.
Implementation
const OrderInfo({
this.name,
this.phoneNumber,
this.email,
this.shippingAddress,
});