12 lines
172 B
Dart
Raw Normal View History

class CardData {
final String text;
2024-10-01 22:57:57 +04:00
final String? description;
final String? imageUrl;
CardData(
this.text, {
2024-10-01 22:57:57 +04:00
this.description,
this.imageUrl,
});
}