Initial commit for complete UI

This commit is contained in:
2025-05-29 14:59:31 +05:30
commit 1f0ec17edc
170 changed files with 7211 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
import 'package:glowwheels/models/serviceboy_model.dart';
class Order {
final String customerName;
final String mobileNumber;
final String serviceType;
final String service;
final String price;
final String time;
final String date;
final String carName;
final String status;
final String imagePath;
ServiceBoy? assignedBoy;
Order({
required this.customerName,
required this.mobileNumber,
required this.serviceType,
required this.service,
required this.price,
required this.time,
required this.date,
required this.carName,
required this.status,
required this.imagePath,
this.assignedBoy,
});
}