GameHighScores constructor

const GameHighScores({
  1. required List<GameHighScore> scores,
  2. dynamic extra,
  3. int? clientId,
})

GameHighScores (gameHighScores) - basic class

Contains a list of game high scores.

  • scores: A list of game high scores.

Implementation

const GameHighScores({
  required this.scores,
  this.extra,
  this.clientId,
});