Ubuntu font

This commit is contained in:
SomnusVeritas
2023-10-21 10:35:16 +02:00
parent 42927275f6
commit 781c92faf0
12 changed files with 36 additions and 6 deletions

8
lib/models/game.dart Normal file
View File

@@ -0,0 +1,8 @@
class Game {
final int id;
final String name;
Game.fromMap(Map<String, dynamic> map)
: id = map['id'],
name = map['name'];
}