14 lines
204 B
Dart
Raw Normal View History

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