Deployment constructor

Deployment({
  1. String? description,
  2. String? fingerprint,
  3. String? id,
  4. String? insertTime,
  5. List<DeploymentLabelEntry>? labels,
  6. String? manifest,
  7. String? name,
  8. Operation? operation,
  9. String? selfLink,
  10. TargetConfiguration? target,
  11. DeploymentUpdate? update,
  12. String? updateTime,
})

Implementation

Deployment({
  this.description,
  this.fingerprint,
  this.id,
  this.insertTime,
  this.labels,
  this.manifest,
  this.name,
  this.operation,
  this.selfLink,
  this.target,
  this.update,
  this.updateTime,
});