toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final testingChallenge = this.testingChallenge;
  final testingScore = this.testingScore;
  return {
    'testingChallenge': ?testingChallenge,
    'testingScore': ?testingScore,
  };
}