CreditNoteCartReposne constructor

CreditNoteCartReposne({
  1. List<CreditNoteData>? data,
  2. String? summaryAdd,
  3. RemoveColumn? removeColumn,
  4. String? intraState1InterState2,
  5. String? totalItem,
  6. String? subTotal,
  7. List<DiscountArray>? discountArray,
  8. String? schemeDiscountPrice,
  9. String? cashDiscount,
  10. String? cashDiscountPrice,
  11. String? productDiscountPrice,
  12. String? productDiscountSpecialPrice,
  13. String? productDiscountSpecialCompanyPrice,
  14. String? extraDiscountAsPerFixed,
  15. String? extraDiscountAsPerFixedPrice,
  16. String? discountPrice,
  17. String? sgst,
  18. String? cgst,
  19. String? igst,
  20. String? tcsPer,
  21. String? tcs,
  22. String? freight,
  23. String? roundingOff,
  24. String? grandTotal,
  25. num? totalRecords,
  26. List<CreditNoteSummary>? summary,
  27. num? success,
  28. 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;
}