DailyStat.fromMap constructor
Implementation
factory DailyStat.fromMap(Map<String, dynamic> json) => DailyStat(
deliveryDay: json["delivery_day"] == null
? null
: DateTime.parse(json["delivery_day"]).toLocal(),
totalDeliveryPrice: json["daily_profit"],
dailyOrderCount: json["daily_order_count"],
);