Order constructor

Order({
  1. UserDetails? userDetails,
  2. String? orderId,
  3. String? cnAmount,
  4. String? showInvoiceBtn,
  5. String? orderNumber,
  6. String? subTotal,
  7. String? discount,
  8. String? discountPrice,
  9. String? sgst,
  10. String? cgst,
  11. String? igst,
  12. String? roundingOff,
  13. String? grandTotal,
  14. String? amountPaid,
  15. String? balanceDue,
  16. String? pickUpOptions,
  17. PickUpPriority? pickUpPriority,
  18. String? remarks,
  19. Status? status,
  20. CreatedAtDateTime? createdAtDateTime,
  21. List<DrugLicense>? drugLicense,
  22. String? totalItem,
  23. PrescriptionImageObj? prescriptionImageObj,
  24. Address? address,
})

Implementation

Order({
    this.userDetails,
    this.orderId,
    this.cnAmount,
    this.showInvoiceBtn,
    this.orderNumber,
    this.subTotal,
    this.discount,
    this.discountPrice,
    this.sgst,
    this.cgst,
    this.igst,
    this.roundingOff,
    this.grandTotal,
    this.amountPaid,
    this.balanceDue,
    this.pickUpOptions,
    this.pickUpPriority,
    this.remarks,
    this.status,
    this.createdAtDateTime,
    this.drugLicense,
    this.totalItem,
    this.prescriptionImageObj,
    this.address,});