19 lines
421 B
Dart
Raw Permalink 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;
2024-12-12 12:06:01 +04:00
final String? categoryText;
2024-12-11 13:51:53 +04:00
//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, {
2024-12-12 12:06:01 +04:00
required this.categoryText,
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
});
}