toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final items = this.items;
  final kind = this.kind;
  final nextPageToken = this.nextPageToken;
  final numScores = this.numScores;
  final playerScore = this.playerScore;
  final prevPageToken = this.prevPageToken;
  return {
    'items': ?items,
    'kind': ?kind,
    'nextPageToken': ?nextPageToken,
    'numScores': ?numScores,
    'playerScore': ?playerScore,
    'prevPageToken': ?prevPageToken,
  };
}