Corpus constructor

Corpus({
  1. String name = '',
  2. String displayName = '',
  3. Timestamp? createTime,
  4. Timestamp? updateTime,
})

Implementation

Corpus({
  this.name = '',
  this.displayName = '',
  this.createTime,
  this.updateTime,
}) : super(fullyQualifiedName);