toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'average_score'] = this.averageScore;
json[r'histogram_duration_seconds'] = this.histogramDurationSeconds;
json[r'max_score'] = this.maxScore;
json[r'min_score'] = this.minScore;
return json;
}