Deployment constructor

Deployment({
  1. bool? autoDeployed,
  2. DateTime? createdDate,
  3. String? deploymentId,
  4. DeploymentStatus? deploymentStatus,
  5. String? deploymentStatusMessage,
  6. String? description,
})

Implementation

Deployment({
  this.autoDeployed,
  this.createdDate,
  this.deploymentId,
  this.deploymentStatus,
  this.deploymentStatusMessage,
  this.description,
});