Cart constructor
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,
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;
}