WordState constructor

const WordState({
  1. required int index,
  2. required List<String> words,
  3. bool isFinal = false,
  4. int failure = -1,
})

Implementation

const WordState({
  required this.index,
  required this.words,
  this.isFinal = false,
  this.failure = -1,
});