Artifact constructor

Artifact({
  1. ArtifactLocation? location,
  2. String? name,
  3. String? revision,
})

Implementation

Artifact({
  this.location,
  this.name,
  this.revision,
});