OrderInfo constructor
OrderInfo({
- String? name,
- String? phoneNumber,
- String? email,
- ShippingAddress? shippingAddress,
Implementation
OrderInfo({
this.name,
this.phoneNumber,
this.email,
this.shippingAddress,
});