toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final formattedScore = this.formattedScore;
final formattedScoreRank = this.formattedScoreRank;
final kind = this.kind;
final player = this.player;
final scoreRank = this.scoreRank;
final scoreTag = this.scoreTag;
final scoreValue = this.scoreValue;
final timeSpan = this.timeSpan;
final writeTimestampMillis = this.writeTimestampMillis;
return {
'formattedScore': ?formattedScore,
'formattedScoreRank': ?formattedScoreRank,
'kind': ?kind,
'player': ?player,
'scoreRank': ?scoreRank,
'scoreTag': ?scoreTag,
'scoreValue': ?scoreValue,
'timeSpan': ?timeSpan,
'writeTimestampMillis': ?writeTimestampMillis,
};
}