MarketProduct constructor

MarketProduct({
  1. int? id,
  2. String? reference,
  3. String? pictureUrl,
  4. int? categoryId,
  5. int? purchaseType,
  6. int? warrantyDuration,
  7. int? planDuration,
  8. int? workDuration,
  9. int? numberOfItems,
  10. String? label,
  11. String? languageCode,
  12. String? subtitleLabel,
  13. dynamic description,
  14. dynamic jsonDescription,
  15. dynamic countryCode,
  16. dynamic price,
  17. dynamic priceFormat,
  18. int? priceMonthly,
  19. String? priceMonthlyFormat,
  20. int? priceYearly,
  21. String? priceYearlyFormat,
  22. String? priceByAdIfMonthlyFormat,
  23. String? priceByAdIfYearlyFormat,
  24. double? pricePercentageDiscountIfYearly,
  25. String? currency,
  26. int? currentDiscountActive,
  27. dynamic currentDiscountInPercent,
  28. int? discountBetweenYearAndMonth,
  29. dynamic convertedPricing,
})

Implementation

MarketProduct(
    {this.id,
    this.reference,
    this.pictureUrl,
    this.categoryId,
    this.purchaseType,
    this.warrantyDuration,
    this.planDuration,
    this.workDuration,
    this.numberOfItems,
    this.label,
    this.languageCode,
    this.subtitleLabel,
    this.description,
    this.jsonDescription,
    this.countryCode,
    this.price,
    this.priceFormat,
    this.priceMonthly,
    this.priceMonthlyFormat,
    this.priceYearly,
    this.priceYearlyFormat,
    this.priceByAdIfMonthlyFormat,
    this.priceByAdIfYearlyFormat,
    this.pricePercentageDiscountIfYearly,
    this.currency,
    this.currentDiscountActive,
    this.currentDiscountInPercent,
    this.discountBetweenYearAndMonth,
    this.convertedPricing});