initial commit: push everything

This commit is contained in:
2026-07-06 20:27:53 +05:30
commit df4e044d74
329 changed files with 36620 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
class DeliveryStats {
final int today;
final int week;
final int month;
final int total;
final int cancelled;
DeliveryStats({
required this.today,
required this.week,
required this.month,
required this.total,
required this.cancelled,
});
factory DeliveryStats.fromJson(Map<String, dynamic> json) {
return DeliveryStats(
today: json['today'] ?? 0,
week: json['week'] ?? 0,
month: json['month'] ?? 0,
total: json['total'] ?? 0,
cancelled: json['cancelled'] ?? 0,
);
}
}