MavenArtifact constructor

MavenArtifact({
  1. String? artifactId,
  2. String? groupId,
  3. String? path,
  4. String? repository,
  5. String? version,
})

Implementation

MavenArtifact({
  this.artifactId,
  this.groupId,
  this.path,
  this.repository,
  this.version,
});