GameMode constructor

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

Implementation

GameMode({
  this.script,
  this.preview,
  this.tables = const {},
  this.teams = const {},
});