12 lines
176 B
Dart
Raw Normal View History

2024-11-27 23:10:56 +04:00
class CardData {
2024-10-25 21:48:27 +04:00
final String text;
final String description;
final String? imgUrl;
2024-11-27 23:10:56 +04:00
CardData(
2024-12-17 14:33:28 +04:00
this.text, {
required this.description,
this.imgUrl,
});
}