Artifact constructor

Artifact({
  1. String? arn,
  2. String? extension,
  3. String? name,
  4. ArtifactType? type,
  5. String? url,
})

Implementation

Artifact({
  this.arn,
  this.extension,
  this.name,
  this.type,
  this.url,
});