DailyStat constructor

DailyStat({
  1. DateTime? deliveryDay,
  2. num? totalDeliveryPrice,
  3. int? dailyOrderCount,
})

Implementation

DailyStat({
  this.deliveryDay,
  this.totalDeliveryPrice,
  this.dailyOrderCount,
});