Data constructor

Data({
  1. String? orderId,
  2. String? orderType,
  3. String? invoiceId,
  4. String? backendOrderId,
  5. String? buyerCustomerId,
  6. String? buyerPartnerId,
  7. int? buyerTypeId,
  8. String? sellerPartnerId,
  9. int? sellerTypeId,
  10. String? priceCurrency,
  11. int? conversionRate,
  12. String? orderSubType,
  13. String? cartId,
  14. String? invoiceReceiptId,
  15. String? status,
  16. double? orderSubTotal,
  17. double? priceAmount,
  18. double? totalAmount,
  19. double? totalTaxAmount,
  20. double? totalDiscountAmount,
  21. String? createdBy,
  22. String? createdByName,
  23. BillTo? billTo,
  24. PayTo? payTo,
  25. BuyerInfo? buyerInfo,
  26. SellerInfo? sellerInfo,
  27. OrderAddress? orderSourceAddress,
  28. OrderAddress? orderDestinationAddress,
  29. String? deliveryStatus,
  30. String? invoiceStatus,
  31. String? remarks,
  32. String? productTypeId,
  33. String? productTypeName,
  34. List<LineItem>? lineItems,
  35. bool? cancellable,
})

Implementation

Data({
  this.orderId,
  this.orderType,
  this.invoiceId,
  this.backendOrderId,
  this.buyerCustomerId,
  this.buyerPartnerId,
  this.buyerTypeId,
  this.sellerPartnerId,
  this.sellerTypeId,
  this.priceCurrency,
  this.conversionRate,
  this.orderSubType,
  this.cartId,
  this.invoiceReceiptId,
  this.status,
  this.orderSubTotal,
  this.priceAmount,
  this.totalAmount,
  this.totalTaxAmount,
  this.totalDiscountAmount,
  this.createdBy,
  this.createdByName,
  this.billTo,
  this.payTo,
  this.buyerInfo,
  this.sellerInfo,
  this.orderSourceAddress,
  this.orderDestinationAddress,
  this.deliveryStatus,
  this.invoiceStatus,
  this.remarks,
  this.productTypeId,
  this.productTypeName,
  this.lineItems,
  this.cancellable,
});