HighScore constructor

const HighScore({
  1. required int pos,
  2. required int userId,
  3. required int score,
})

High Score constructor.

Implementation

const HighScore({
  required this.pos,
  required this.userId,
  required this.score,
}) : super._();