16 lines
292 B
Dart
16 lines
292 B
Dart
class CardData {
|
|
final String id;
|
|
final String title;
|
|
final String? imageUrl;
|
|
final String currentPrice;
|
|
final String priceChange;
|
|
|
|
CardData({
|
|
required this.id,
|
|
required this.title,
|
|
this.imageUrl,
|
|
required this.currentPrice,
|
|
required this.priceChange,
|
|
});
|
|
}
|