StatisticModel constructor

StatisticModel({
  1. int? totalOrdersCount,
  2. num? totalDeliveryPrice,
  3. num? totalBeforeDeliveryPrice,
  4. num? totalBeforeDeliveryCount,
  5. List<DailyStat>? dailyStats,
})

Implementation

StatisticModel({
  this.totalOrdersCount,
  this.totalDeliveryPrice,
  this.totalBeforeDeliveryPrice,
  this.totalBeforeDeliveryCount,
  this.dailyStats,
});