OrderData constructor

OrderData({
  1. String? orderId,
  2. String? orderDate,
  3. String? pickupLocation,
  4. String? channelId,
  5. String? comment,
  6. String? billingCustomerName,
  7. String? billingLastName,
  8. String? billingAddress,
  9. String? billingAddress2,
  10. String? billingCity,
  11. String? billingPincode,
  12. String? billingState,
  13. String? billingCountry,
  14. String? billingEmail,
  15. String? billingPhone,
  16. bool? shippingIsBilling,
  17. String? shippingCustomerName,
  18. String? shippingLastName,
  19. String? shippingAddress,
  20. String? shippingAddress2,
  21. String? shippingCity,
  22. String? shippingPincode,
  23. String? shippingCountry,
  24. String? shippingState,
  25. String? shippingEmail,
  26. String? shippingPhone,
  27. List<OrderItem>? orderItems,
  28. String? paymentMethod,
  29. int? shippingCharges,
  30. int? giftwrapCharges,
  31. int? transactionCharges,
  32. int? totalDiscount,
  33. int? subTotal,
  34. int? length,
  35. int? breadth,
  36. int? height,
  37. double? weight,
})

Implementation

OrderData({
  this.orderId,
  this.orderDate,
  this.pickupLocation,
  this.channelId,
  this.comment,
  this.billingCustomerName,
  this.billingLastName,
  this.billingAddress,
  this.billingAddress2,
  this.billingCity,
  this.billingPincode,
  this.billingState,
  this.billingCountry,
  this.billingEmail,
  this.billingPhone,
  this.shippingIsBilling,
  this.shippingCustomerName,
  this.shippingLastName,
  this.shippingAddress,
  this.shippingAddress2,
  this.shippingCity,
  this.shippingPincode,
  this.shippingCountry,
  this.shippingState,
  this.shippingEmail,
  this.shippingPhone,
  this.orderItems,
  this.paymentMethod,
  this.shippingCharges,
  this.giftwrapCharges,
  this.transactionCharges,
  this.totalDiscount,
  this.subTotal,
  this.length,
  this.breadth,
  this.height,
  this.weight,
});