Deployment constructor

Deployment({
  1. DateTime? creationTimestamp,
  2. String? deploymentId,
  3. String? deploymentName,
  4. DeploymentStatus? deploymentStatus,
  5. bool? isLatestForTarget,
  6. String? revisionId,
  7. String? targetArn,
})

Implementation

Deployment({
  this.creationTimestamp,
  this.deploymentId,
  this.deploymentName,
  this.deploymentStatus,
  this.isLatestForTarget,
  this.revisionId,
  this.targetArn,
});