Artifact constructor

Artifact({
  1. Map<String, String>? annotations,
  2. String? contents,
  3. String? createTime,
  4. String? hash,
  5. Map<String, String>? labels,
  6. String? mimeType,
  7. String? name,
  8. int? sizeBytes,
  9. String? updateTime,
})

Implementation

Artifact({
  this.annotations,
  this.contents,
  this.createTime,
  this.hash,
  this.labels,
  this.mimeType,
  this.name,
  this.sizeBytes,
  this.updateTime,
});