CartListResponseModel constructor

CartListResponseModel({
  1. List<CartItems>? data,
  2. String? totalItem,
  3. String? subTotal,
  4. String? discount,
  5. String? discountDisplay,
  6. String? discountPrice,
  7. String? sgst,
  8. String? cgst,
  9. String? igst,
  10. String? roundingOff,
  11. String? grandTotal,
  12. num? totalRecords,
  13. List<Summary>? summary,
  14. List<FreeProduct>? freeProduct,
  15. FreeProductTotal? freeProductTotal,
  16. UserWiseChanges? userWiseChanges,
  17. RequirePrescription? requirePrescription,
  18. num? success,
  19. String? message,
})

Implementation

CartListResponseModel({
    this.data,
    this.totalItem,
    this.subTotal,
    this.discount,
    this.discountDisplay,
    this.discountPrice,
    this.sgst,
    this.cgst,
    this.igst,
    this.roundingOff,
    this.grandTotal,
    this.totalRecords,
    this.summary,
    this.freeProduct,
    this.freeProductTotal,
    this.userWiseChanges,
  this.requirePrescription,
  this.success,
    this.message,});