KeyPhrase constructor

KeyPhrase({
  1. int? beginOffset,
  2. int? endOffset,
  3. double? score,
  4. String? text,
})

Implementation

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