You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
506 B

class OrdersModel {
final DateTime date;
final String? imageUrl; // Network image
final String? imageAsset;
final String status;
final String title;
final String location;
final String quantity;
final String time;
final String extraInfo;
OrdersModel({
required this.date,
this.imageUrl,
this.imageAsset,
required this.status,
required this.title,
required this.location,
required this.quantity,
required this.time,
required this.extraInfo,
});
}