Cart constructor

Cart({
  1. String? schemeDiscount,
  2. String? schemeDiscountPrice,
  3. String? quantity,
  4. String? quantityFree,
  5. String? discountAsPerFixed,
  6. String? discountAsPerFixedPrice,
  7. String? productDiscount,
  8. String? productDiscountPrice,
  9. String? productDiscountSpecial,
  10. String? productDiscountSpecialPrice,
  11. String? appBannersId,
  12. String? appBannersParentId,
  13. String? productDiscountSpecialCompany,
  14. String? productDiscountSpecialCompanyPrice,
  15. String? outOfStock1AsOut,
  16. String? discount,
  17. String? discountPrice,
  18. String? cartId,
  19. String? totalTaxableItemVise,
  20. String? totalItemVise,
  21. String? sgst,
  22. String? cgst,
  23. String? igst,
  24. String? sgstPrice,
  25. String? cgstPrice,
  26. String? igstPrice,
  27. String? totalGst,
})

Implementation

Cart({
  String? schemeDiscount,
  String? schemeDiscountPrice,
  String? quantity,
  String? quantityFree,
  String? discountAsPerFixed,
  String? discountAsPerFixedPrice,
  String? productDiscount,
  String? productDiscountPrice,
  String? productDiscountSpecial,
  String? productDiscountSpecialPrice,
  String? appBannersId,
  String? appBannersParentId,
  String? productDiscountSpecialCompany,
  String? productDiscountSpecialCompanyPrice,
  String? outOfStock1AsOut,
  String? discount,
  String? discountPrice,
  String? cartId,
  String? totalTaxableItemVise,
  String? totalItemVise,
  String? sgst,
  String? cgst,
  String? igst,
  String? sgstPrice,
  String? cgstPrice,
  String? igstPrice,
  String? totalGst,}){
  _schemeDiscount = schemeDiscount;
  _schemeDiscountPrice = schemeDiscountPrice;
  _quantity = quantity;
  _quantityFree = quantityFree;
  _discountAsPerFixed = discountAsPerFixed;
  _discountAsPerFixedPrice = discountAsPerFixedPrice;
  _productDiscount = productDiscount;
  _productDiscountPrice = productDiscountPrice;
  _productDiscountSpecial = productDiscountSpecial;
  _productDiscountSpecialPrice = productDiscountSpecialPrice;
  _appBannersId = appBannersId;
  _appBannersParentId = appBannersParentId;
  _productDiscountSpecialCompany = productDiscountSpecialCompany;
  _productDiscountSpecialCompanyPrice = productDiscountSpecialCompanyPrice;
  _outOfStock1AsOut = outOfStock1AsOut;
  _discount = discount;
  _discountPrice = discountPrice;
  _cartId = cartId;
  _totalTaxableItemVise = totalTaxableItemVise;
  _totalItemVise = totalItemVise;
  _sgst = sgst;
  _cgst = cgst;
  _igst = igst;
  _sgstPrice = sgstPrice;
  _cgstPrice = cgstPrice;
  _igstPrice = igstPrice;
  _totalGst = totalGst;
}