Entity constructor

Entity({
  1. List<EntityMention>? mentions,
  2. Map<String, String>? metadata,
  3. String? name,
  4. double? salience,
  5. Sentiment? sentiment,
  6. String? type,
})

Implementation

Entity({
  this.mentions,
  this.metadata,
  this.name,
  this.salience,
  this.sentiment,
  this.type,
});