toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final gcsPath = this.gcsPath;
final launchParameters = this.launchParameters;
final location = this.location;
final projectId = this.projectId;
final validateOnly = this.validateOnly;
return {
'gcsPath': ?gcsPath,
'launchParameters': ?launchParameters,
'location': ?location,
'projectId': ?projectId,
'validateOnly': ?validateOnly,
};
}