class CardData { final String name; final double price; CardData({required this.name, required this.price}); }