toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final description = this.description;
final etag = this.etag;
final name = this.name;
final perimeterType = this.perimeterType;
final spec = this.spec;
final status = this.status;
final title = this.title;
final useExplicitDryRunSpec = this.useExplicitDryRunSpec;
return {
'description': ?description,
'etag': ?etag,
'name': ?name,
'perimeterType': ?perimeterType,
'spec': ?spec,
'status': ?status,
'title': ?title,
'useExplicitDryRunSpec': ?useExplicitDryRunSpec,
};
}