Version constructor

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

Implementation

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