Items constructor
Items({
- String? id,
- String? createdAt,
- String? status,
- int? quantity,
- String? startDate,
- String? endDate,
- int? basePrice,
- int? discountedPrice,
- double? paidPrice,
- int? taxPercentage,
- double? taxAmount,
- String? currency,
- String? fromCurrency,
- int? currencyRate,
- String? baseCurrency,
- double? baseCurrencyRate,
- String? customerNote,
- String? storeNote,
- StoreDTO? store,
- ProductDetail? productDetail,
- CampaignDTO? campaign,
- List<
StockDTO> ? stocks, - List<
RefundDTO> ? refunds, - 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});