Initial commit for complete UI
This commit is contained in:
31
lib/models/order_model.dart
Normal file
31
lib/models/order_model.dart
Normal 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,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user