32 lines
667 B
Dart
32 lines
667 B
Dart
|
|
|
|
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,
|
|
});
|
|
}
|