GameHighScores constructor

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

Contains a list of game high scores

Implementation

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