DictionaryMatch constructor

DictionaryMatch({
  1. required String password,
  2. required int start,
  3. required int end,
  4. required String matchedWord,
  5. required int rank,
  6. required Dictionary dictionary,
  7. int? levenshteinDistance,
  8. String? levenshteinDistanceEntry,
})

Creates a match.

Implementation

DictionaryMatch({
  required String password,
  required int start,
  required int end,
  required this.matchedWord,
  required this.rank,
  required this.dictionary,
  this.levenshteinDistance,
  this.levenshteinDistanceEntry,
}) : super(password: password, start: start, end: end);