2024-11-13 21:23:25 +03:00
|
|
|
class CardData {
|
|
|
|
final String text;
|
|
|
|
final String descriptionText;
|
|
|
|
final String? imageUrl;
|
|
|
|
final String? id;
|
2024-11-14 16:44:44 +03:00
|
|
|
final int? year;
|
|
|
|
final List<String>? genres;
|
|
|
|
final List<String>? countries;
|
|
|
|
CardData(this.text, {
|
|
|
|
required this.descriptionText,
|
|
|
|
this.imageUrl,
|
|
|
|
this.id,
|
|
|
|
this.year,
|
|
|
|
this.genres,
|
|
|
|
this.countries,
|
|
|
|
});
|
2024-11-13 21:23:25 +03:00
|
|
|
}
|