GameHighScore constructor

const GameHighScore({
  1. required int position,
  2. required int userId,
  3. required int score,
})

Contains one row of the game high score table

Implementation

const GameHighScore({
  required this.position,
  required this.userId,
  required this.score,
});