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