GameHighScore constructor
const
GameHighScore({})
Constructs a GameHighScore object
Implementation
const factory GameHighScore({
/// Position in high score table for the game
@JsonKey(name: 'position') required int position,
/// User
@JsonKey(name: 'user') required User user,
/// Score
@JsonKey(name: 'score') required int score,
}) = _GameHighScore;