DeploymentStrategy constructor

DeploymentStrategy({
  1. int? deploymentDurationInMinutes,
  2. String? description,
  3. int? finalBakeTimeInMinutes,
  4. double? growthFactor,
  5. GrowthType? growthType,
  6. String? id,
  7. String? name,
  8. ReplicateTo? replicateTo,
})

Implementation

DeploymentStrategy({
  this.deploymentDurationInMinutes,
  this.description,
  this.finalBakeTimeInMinutes,
  this.growthFactor,
  this.growthType,
  this.id,
  this.name,
  this.replicateTo,
});