8 lines
167 B
Dart
Raw Normal View History

2024-09-11 22:57:02 +04:00
class CardData {
final String name;
final double price;
2024-09-15 21:41:47 +04:00
final String imageUrl;
2024-09-11 22:57:02 +04:00
2024-09-15 21:41:47 +04:00
CardData({required this.name, required this.price, required this.imageUrl});
2024-09-11 22:57:02 +04:00
}