MavenArtifact constructor

MavenArtifact({
  1. String? artifactId,
  2. String? createTime,
  3. String? groupId,
  4. String? name,
  5. String? pomUri,
  6. String? updateTime,
  7. String? version,
})

Implementation

MavenArtifact({
  this.artifactId,
  this.createTime,
  this.groupId,
  this.name,
  this.pomUri,
  this.updateTime,
  this.version,
});