Version constructor

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

Implementation

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