toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final framework = this.framework;
final modelPath = this.modelPath;
final pythonVersion = this.pythonVersion;
final runtimeVersion = this.runtimeVersion;
return {
'framework': ?framework,
'modelPath': ?modelPath,
'pythonVersion': ?pythonVersion,
'runtimeVersion': ?runtimeVersion,
};
}