Mobiles_programming/lib/domain/models/game.dart

14 lines
330 B
Dart
Raw Normal View History

2024-10-29 18:39:40 +04:00
class GameData {
final String name;
final int price;
final String? image;
//Описание игры
final String? description;
GameData(
{required this.name,
required this.price,
this.description,
this.image =
'https://parpol.ru/wp-content/uploads/2019/09/placeholder.png'});
}