toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final deployedModelId = this.deployedModelId;
final explanations = this.explanations;
final predictions = this.predictions;
return {
'deployedModelId': ?deployedModelId,
'explanations': ?explanations,
'predictions': ?predictions,
};
}