IatResult constructor

IatResult({
  1. required int sentence,
  2. required bool lastSentence,
  3. required int begin,
  4. required int end,
  5. required List<Words> words,
  6. Pgs? pgs,
  7. List<int>? rg,
})

Implementation

IatResult({
  required this.sentence,
  required this.lastSentence,
  required this.begin,
  required this.end,
  required this.words,
  this.pgs,
  this.rg,
});