Total constructor

Total({
  1. String? sales,
  2. int? orders,
  3. int? items,
  4. String? tax,
  5. String? shipping,
  6. String? discount,
  7. int? customers,
})

Implementation

Total({
  this.sales,
  this.orders,
  this.items,
  this.tax,
  this.shipping,
  this.discount,
  this.customers,
});