PhaseConfig constructor

PhaseConfig({
  1. int? percentage,
  2. String? phaseId,
  3. Postdeploy? postdeploy,
  4. Predeploy? predeploy,
  5. List<String>? profiles,
  6. bool? verify,
})

Implementation

PhaseConfig({
  this.percentage,
  this.phaseId,
  this.postdeploy,
  this.predeploy,
  this.profiles,
  this.verify,
});