toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final deployParameters = this.deployParameters;
final profiles = this.profiles;
final strategy = this.strategy;
final targetId = this.targetId;
return {
'deployParameters': ?deployParameters,
'profiles': ?profiles,
'strategy': ?strategy,
'targetId': ?targetId,
};
}