11 lines
189 B
Dart
11 lines
189 B
Dart
class CardDate {
|
|
final String text;
|
|
final String description;
|
|
final String? imgUrl;
|
|
|
|
CardDate(
|
|
this.text, {
|
|
required this.description,
|
|
this.imgUrl,
|
|
});
|
|
} |