DictionaryMatch constructor
DictionaryMatch({})
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);