DeploymentSummary constructor

DeploymentSummary({
  1. DateTime? completedAt,
  2. String? configurationName,
  3. String? configurationVersion,
  4. int? deploymentDurationInMinutes,
  5. int? deploymentNumber,
  6. int? finalBakeTimeInMinutes,
  7. double? growthFactor,
  8. GrowthType? growthType,
  9. double? percentageComplete,
  10. DateTime? startedAt,
  11. DeploymentState? state,
})

Implementation

DeploymentSummary({
  this.completedAt,
  this.configurationName,
  this.configurationVersion,
  this.deploymentDurationInMinutes,
  this.deploymentNumber,
  this.finalBakeTimeInMinutes,
  this.growthFactor,
  this.growthType,
  this.percentageComplete,
  this.startedAt,
  this.state,
});