2024-09-11 22:57:02 +04:00
|
|
|
class CardData {
|
|
|
|
final String name;
|
2024-09-17 00:03:15 +04:00
|
|
|
final String image;
|
|
|
|
final String species;
|
2024-10-02 14:02:45 +04:00
|
|
|
final String? id;
|
2024-09-11 22:57:02 +04:00
|
|
|
|
2024-10-02 14:02:45 +04:00
|
|
|
const CardData(
|
|
|
|
{required this.id, required this.name, required this.image, required this.species});
|
2024-09-11 22:57:02 +04:00
|
|
|
}
|