13 lines
261 B
Dart
Raw Normal View History

2024-10-14 20:41:05 +04:00
class CardData {
2024-10-29 01:49:32 +04:00
final String? text;
final String? descriptionText;
2024-10-14 20:41:05 +04:00
final String? imageUrl;
2024-10-29 01:49:32 +04:00
final String? gameDesc;
2024-10-14 20:41:05 +04:00
CardData(
this.text, {
required this.descriptionText,
this.imageUrl,
required this.gameDesc,
});
}