SellThruProductDataModel constructor

SellThruProductDataModel({
  1. int? page,
  2. int? size,
  3. List<ProductContentModel>? content,
  4. int? totalElements,
  5. String? currency,
  6. String? localCurrency,
  7. double? localCurrencyGrandTotal,
  8. double? ctw,
  9. String? ctwNegativeTax,
  10. String? salesTax,
  11. double? overallSaleTaxPercentage,
  12. bool? first,
  13. bool? last,
  14. SortModel? sort,
  15. String? transactionId,
  16. String? invoiceId,
  17. String? externalId,
  18. double? totalAmount,
  19. double? totalNetAmount,
  20. double? totalAmountPaid,
  21. double? totalDiscount,
  22. double? totalTax,
  23. String? paymentStatus,
  24. String? dateTime,
  25. String? paymentMethod,
  26. String? taxPercentage,
  27. int? totalPages,
})

Implementation

SellThruProductDataModel(
    {this.page,
    this.size,
    this.content,
    this.totalElements,
    this.currency,
    this.localCurrency,
    this.localCurrencyGrandTotal,
    this.ctw,
    this.ctwNegativeTax,
    this.salesTax,
    this.overallSaleTaxPercentage,
    this.first,
    this.last,
    this.sort,
    this.transactionId,
    this.invoiceId,
    this.externalId,
    this.totalAmount,
    this.totalNetAmount,
    this.totalAmountPaid,
    this.totalDiscount,
    this.totalTax,
    this.paymentStatus,
    this.dateTime,
    this.paymentMethod,
    this.taxPercentage,
    this.totalPages});