copyWith method
Implementation
GameHighScores copyWith({
List<GameHighScore>? scores,
dynamic extra,
int? clientId,
}) => GameHighScores(
scores: scores ?? this.scores,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);
GameHighScores copyWith({
List<GameHighScore>? scores,
dynamic extra,
int? clientId,
}) => GameHighScores(
scores: scores ?? this.scores,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);