CreditNoteCartReposne constructor
CreditNoteCartReposne({
- List<
CreditNoteData> ? data, - String? summaryAdd,
- RemoveColumn? removeColumn,
- String? intraState1InterState2,
- String? totalItem,
- String? subTotal,
- List<
DiscountArray> ? discountArray, - String? schemeDiscountPrice,
- String? cashDiscount,
- String? cashDiscountPrice,
- String? productDiscountPrice,
- String? productDiscountSpecialPrice,
- String? productDiscountSpecialCompanyPrice,
- String? extraDiscountAsPerFixed,
- String? extraDiscountAsPerFixedPrice,
- String? discountPrice,
- String? sgst,
- String? cgst,
- String? igst,
- String? tcsPer,
- String? tcs,
- String? freight,
- String? roundingOff,
- String? grandTotal,
- num? totalRecords,
- List<
CreditNoteSummary> ? summary, - num? success,
- String? message,
Implementation
CreditNoteCartReposne({
List<CreditNoteData>? data,
String? summaryAdd,
RemoveColumn? removeColumn,
String? intraState1InterState2,
String? totalItem,
String? subTotal,
List<DiscountArray>? discountArray,
String? schemeDiscountPrice,
String? cashDiscount,
String? cashDiscountPrice,
String? productDiscountPrice,
String? productDiscountSpecialPrice,
String? productDiscountSpecialCompanyPrice,
String? extraDiscountAsPerFixed,
String? extraDiscountAsPerFixedPrice,
String? discountPrice,
String? sgst,
String? cgst,
String? igst,
String? tcsPer,
String? tcs,
String? freight,
String? roundingOff,
String? grandTotal,
num? totalRecords,
List<CreditNoteSummary>? summary,
num? success,
String? message,}){
_data = data;
_summaryAdd = summaryAdd;
_removeColumn = removeColumn;
_intraState1InterState2 = intraState1InterState2;
_totalItem = totalItem;
_subTotal = subTotal;
_discountArray = discountArray;
_schemeDiscountPrice = schemeDiscountPrice;
_cashDiscount = cashDiscount;
_cashDiscountPrice = cashDiscountPrice;
_productDiscountPrice = productDiscountPrice;
_productDiscountSpecialPrice = productDiscountSpecialPrice;
_productDiscountSpecialCompanyPrice = productDiscountSpecialCompanyPrice;
_extraDiscountAsPerFixed = extraDiscountAsPerFixed;
_extraDiscountAsPerFixedPrice = extraDiscountAsPerFixedPrice;
_discountPrice = discountPrice;
_sgst = sgst;
_cgst = cgst;
_igst = igst;
_tcsPer = tcsPer;
_tcs = tcs;
_freight = freight;
_roundingOff = roundingOff;
_grandTotal = grandTotal;
_totalRecords = totalRecords;
_summary = summary;
_success = success;
_message = message;
}