11 lines
189 B
Dart
Raw Normal View History

2024-10-25 21:48:27 +04:00
class CardDate {
final String text;
final String description;
final String? imgUrl;
CardDate(
this.text, {
required this.description,
this.imgUrl,
});
}