From f506dd531efe8a1a5ed82fc6bf4bbc31fb58ce38 Mon Sep 17 00:00:00 2001 From: emkartal1 Date: Mon, 13 Mar 2023 09:42:35 +0100 Subject: [PATCH] just correct error for Game.dart file --- Sources/bowlin_project/lib/model/Game.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/bowlin_project/lib/model/Game.dart b/Sources/bowlin_project/lib/model/Game.dart index 9061a32..7d58e20 100644 --- a/Sources/bowlin_project/lib/model/Game.dart +++ b/Sources/bowlin_project/lib/model/Game.dart @@ -44,8 +44,8 @@ class Game { Map m = new Map(); m['id'] = id; - m['time'] = time; - m['images'] = playerImages; + m['date'] = date; + m['IdUsers'] = playersId; return m; }