Deployment constructor

Deployment({
  1. String? appId,
  2. DeploymentCommand? command,
  3. String? comment,
  4. String? completedAt,
  5. String? createdAt,
  6. String? customJson,
  7. String? deploymentId,
  8. int? duration,
  9. String? iamUserArn,
  10. List<String>? instanceIds,
  11. String? stackId,
  12. String? status,
})

Implementation

Deployment({
  this.appId,
  this.command,
  this.comment,
  this.completedAt,
  this.createdAt,
  this.customJson,
  this.deploymentId,
  this.duration,
  this.iamUserArn,
  this.instanceIds,
  this.stackId,
  this.status,
});