19 lines
427 B
Dart
Raw Normal View History

2024-12-11 12:35:10 +04:00
import 'package:flutter/material.dart';
class CardData {
2024-12-11 13:51:53 +04:00
final String? text;
final String? descriptionText;
//final IconData icon;
2024-12-11 12:35:10 +04:00
final String? imageUrl;
2024-12-11 13:51:53 +04:00
final int? gameDesc;
final int? gameDesc2;
2024-12-11 12:35:10 +04:00
CardData(
this.text, {
required this.descriptionText,
2024-12-11 13:51:53 +04:00
//this.icon = Icons.ac_unit_outlined,
2024-12-11 12:35:10 +04:00
this.imageUrl,
required this.gameDesc,
2024-12-11 13:51:53 +04:00
required this.gameDesc2,
2024-12-11 12:35:10 +04:00
});
}