GameHighScore constructor

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

Constructs a GameHighScore object

Implementation

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