Deployment constructor

Deployment({
  1. String? applicationId,
  2. DateTime? completedAt,
  3. String? configurationLocationUri,
  4. String? configurationName,
  5. String? configurationProfileId,
  6. String? configurationVersion,
  7. int? deploymentDurationInMinutes,
  8. int? deploymentNumber,
  9. String? deploymentStrategyId,
  10. String? description,
  11. String? environmentId,
  12. List<DeploymentEvent>? eventLog,
  13. int? finalBakeTimeInMinutes,
  14. double? growthFactor,
  15. GrowthType? growthType,
  16. double? percentageComplete,
  17. DateTime? startedAt,
  18. DeploymentState? state,
})

Implementation

Deployment({
  this.applicationId,
  this.completedAt,
  this.configurationLocationUri,
  this.configurationName,
  this.configurationProfileId,
  this.configurationVersion,
  this.deploymentDurationInMinutes,
  this.deploymentNumber,
  this.deploymentStrategyId,
  this.description,
  this.environmentId,
  this.eventLog,
  this.finalBakeTimeInMinutes,
  this.growthFactor,
  this.growthType,
  this.percentageComplete,
  this.startedAt,
  this.state,
});