SalesReports constructor

SalesReports({
  1. String? totalSales,
  2. String? netSales,
  3. String? averageSales,
  4. int? totalOrders,
  5. int? totalItems,
  6. String? totalTax,
  7. String? totalShipping,
  8. int? totalRefunds,
  9. String? totalDiscount,
  10. String? totalsGroupedBy,
  11. dynamic totals,
  12. int? totalCustomers,
  13. Links? links,
})

Implementation

SalesReports({
  this.totalSales,
  this.netSales,
  this.averageSales,
  this.totalOrders,
  this.totalItems,
  this.totalTax,
  this.totalShipping,
  this.totalRefunds,
  this.totalDiscount,
  this.totalsGroupedBy,
  this.totals,
  this.totalCustomers,
  this.links,
});