Entity constructor

Entity({
  1. String? entityId,
  2. String? preferredTerm,
  3. List<String>? vocabularyCodes,
})

Implementation

Entity({
  this.entityId,
  this.preferredTerm,
  this.vocabularyCodes,
});