OrderModel constructor
Implementation
const OrderModel({
required this.id,
required this.customer,
required this.createdAt,
required this.status,
required this.paymentMethod,
required this.deliveryAddress,
required this.totalPrice,
this.notse,
});