toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final allowedSuccessCodes = this.allowedSuccessCodes;
final gcsObject = this.gcsObject;
final interpreter = this.interpreter;
final localPath = this.localPath;
return {
'allowedSuccessCodes': ?allowedSuccessCodes,
'gcsObject': ?gcsObject,
'interpreter': ?interpreter,
'localPath': ?localPath,
};
}