Version constructor

Version({
  1. Map<String, String>? annotations,
  2. String? createTime,
  3. String? description,
  4. List<Hash>? fingerprints,
  5. Map<String, Object?>? metadata,
  6. String? name,
  7. List<Tag>? relatedTags,
  8. String? updateTime,
})

Implementation

Version({
  this.annotations,
  this.createTime,
  this.description,
  this.fingerprints,
  this.metadata,
  this.name,
  this.relatedTags,
  this.updateTime,
});