toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final deployPercentage = this.deployPercentage;
final reviewExemption = this.reviewExemption;
final target = this.target;
return {
'deployPercentage': ?deployPercentage,
'reviewExemption': ?reviewExemption,
'target': ?target,
};
}