Made winner field non final

This commit is contained in:
2026-01-10 15:53:31 +01:00
parent 1c07346aaf
commit 2ef8eb6534

View File

@@ -9,7 +9,7 @@ class Match {
final String name;
final List<Player>? players;
final Group? group;
final Player? winner;
Player? winner;
Match({
String? id,