Entity constructor

Entity({
  1. int? beginOffset,
  2. int? endOffset,
  3. double? score,
  4. String? text,
  5. EntityType? type,
})

Implementation

Entity({
  this.beginOffset,
  this.endOffset,
  this.score,
  this.text,
  this.type,
});