Order constructor

Order({
  1. BillingAddress? billingAddress,
  2. ShippingAddress? shippingAddress,
  3. Basket? basket,
  4. Shipping? shipping,
})

Implementation

Order(
    {this.billingAddress, this.shippingAddress, this.basket, this.shipping});