OrderInfo constructor

OrderInfo({
  1. String? name,
  2. String? phoneNumber,
  3. String? email,
  4. ShippingAddress? shippingAddress,
})

Implementation

OrderInfo({
  this.name,
  this.phoneNumber,
  this.email,
  this.shippingAddress,
});