Items constructor

Items({
  1. String? id,
  2. String? createdAt,
  3. String? status,
  4. int? quantity,
  5. String? startDate,
  6. String? endDate,
  7. int? basePrice,
  8. int? discountedPrice,
  9. double? paidPrice,
  10. int? taxPercentage,
  11. double? taxAmount,
  12. String? currency,
  13. String? fromCurrency,
  14. int? currencyRate,
  15. String? baseCurrency,
  16. double? baseCurrencyRate,
  17. String? customerNote,
  18. String? storeNote,
  19. StoreDTO? store,
  20. ProductDetail? productDetail,
  21. CampaignDTO? campaign,
  22. List<StockDTO>? stocks,
  23. List<RefundDTO>? refunds,
  24. List<void>? sides,
})

Implementation

Items(
    {this.id,
    this.createdAt,
    this.status,
    this.quantity,
    this.startDate,
    this.endDate,
    this.basePrice,
    this.discountedPrice,
    this.paidPrice,
    this.taxPercentage,
    this.taxAmount,
    this.currency,
    this.fromCurrency,
    this.currencyRate,
    this.baseCurrency,
    this.baseCurrencyRate,
    this.customerNote,
    this.storeNote,
    this.store,
    this.productDetail,
    this.campaign,
    this.stocks,
    this.refunds,
    this.sides});