toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final aggregateClassificationMetrics = this.aggregateClassificationMetrics;
final binaryConfusionMatrixList = this.binaryConfusionMatrixList;
final negativeLabel = this.negativeLabel;
final positiveLabel = this.positiveLabel;
return {
'aggregateClassificationMetrics': ?aggregateClassificationMetrics,
'binaryConfusionMatrixList': ?binaryConfusionMatrixList,
'negativeLabel': ?negativeLabel,
'positiveLabel': ?positiveLabel,
};
}