GameHighScore constructor

GameHighScore({
  1. required int position,
  2. required User user,
  3. required int score,
})

Basic constructor

Implementation

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