GameMode constructor

GameMode({
  1. required String? script,
  2. Map<String, GameTable> tables = const {},
  3. String tableName = '',
  4. Map<String, GameTeam> teams = const {},
})

Implementation

GameMode({
  required this.script,
  this.tables = const {},
  this.tableName = '',
  this.teams = const {},
});