toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final featureDisplayName = this.featureDisplayName;
final predictionStats = this.predictionStats;
final threshold = this.threshold;
final trainingStats = this.trainingStats;
return {
'featureDisplayName': ?featureDisplayName,
'predictionStats': ?predictionStats,
'threshold': ?threshold,
'trainingStats': ?trainingStats,
};
}