DeploymentOverview constructor

DeploymentOverview({
  1. int? failed,
  2. int? inProgress,
  3. int? pending,
  4. int? ready,
  5. int? skipped,
  6. int? succeeded,
})

Implementation

DeploymentOverview({
  this.failed,
  this.inProgress,
  this.pending,
  this.ready,
  this.skipped,
  this.succeeded,
});