ReportQuery constructor

ReportQuery({
  1. int? page,
  2. int? amount,
  3. String? storeId,
  4. ReportType? type,
  5. DateType? dateType,
  6. CurrencyType? currencyType,
  7. bool? withPrices,
  8. bool? isTest,
  9. String? startDate,
  10. String? endDate,
})

Implementation

ReportQuery({
  super.page,
  super.amount,
  this.storeId,
  this.type,
  this.dateType,
  this.currencyType,
  this.withPrices,
  this.isTest,
  this.startDate,
  this.endDate,
});