class Product { final String id; final String name; final String description; final String imageUrl; // We'll use placeholder URLs final double price; final String category; Product({ required this.id, required this.name, required this.description, required this.imageUrl, required this.price, required this.category, }); }