Artefact constructor

Artefact({
  1. String? md5,
  2. String? name,
  3. String? packageName,
  4. String? type,
  5. String? url,
  6. String? versionName,
  7. int? size,
})

Implementation

Artefact({
  this.md5,
  this.name,
  this.packageName,
  this.type,
  this.url,
  this.versionName,
  this.size,
});