toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final dependencies = this.dependencies;
final deployment = this.deployment;
final id = this.id;
return {
'dependencies': ?dependencies,
'deployment': ?deployment,
'id': ?id,
};
}