Entity constructor

Entity({
  1. String? value,
  2. List<String>? synonyms,
})

An entity entry for an associated entity type.

Implementation

Entity({
  this.value,
  this.synonyms,
});