toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final percentage = this.percentage;
final phaseId = this.phaseId;
final postdeploy = this.postdeploy;
final predeploy = this.predeploy;
final profiles = this.profiles;
final verify = this.verify;
return {
'percentage': ?percentage,
'phaseId': ?phaseId,
'postdeploy': ?postdeploy,
'predeploy': ?predeploy,
'profiles': ?profiles,
'verify': ?verify,
};
}