toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final description = this.description;
final environmentGroup = this.environmentGroup;
final fromDeployment = this.fromDeployment;
final shouldSequenceRollout = this.shouldSequenceRollout;
final toDeployment = this.toDeployment;
return {
'description': ?description,
'environmentGroup': ?environmentGroup,
'fromDeployment': ?fromDeployment,
'shouldSequenceRollout': ?shouldSequenceRollout,
'toDeployment': ?toDeployment,
};
}