toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final advanceRolloutRule = this.advanceRolloutRule;
  final promoteReleaseRule = this.promoteReleaseRule;
  final repairRolloutRule = this.repairRolloutRule;
  final timedPromoteReleaseRule = this.timedPromoteReleaseRule;
  return {
    'advanceRolloutRule': ?advanceRolloutRule,
    'promoteReleaseRule': ?promoteReleaseRule,
    'repairRolloutRule': ?repairRolloutRule,
    'timedPromoteReleaseRule': ?timedPromoteReleaseRule,
  };
}