Annotation constructor

Annotation({
  1. String? createTime,
  2. Map<String, String>? labels,
  3. String? name,
  4. String? type,
  5. String? updateTime,
})

Implementation

Annotation({
  this.createTime,
  this.labels,
  this.name,
  this.type,
  this.updateTime,
});