class DeliveryModel { String id; String name; String imageUrl; DeliveryModel({ required this.id, required this.name, required this.imageUrl, }); }