toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final errorCount = this.errorCount;
final nodeHours = this.nodeHours;
final outputPath = this.outputPath;
final predictionCount = this.predictionCount;
return {
'errorCount': ?errorCount,
'nodeHours': ?nodeHours,
'outputPath': ?outputPath,
'predictionCount': ?predictionCount,
};
}