class OrderModel { String idCourse; String title; String price; String discountPrice; String imageUrl; String instructor; OrderModel( {required this.idCourse, required this.title, required this.price, required this.imageUrl, required this.discountPrice, required this.instructor}); }