toL33tMatch method
Converts the match to a L33tMatch.
Implementation
L33tMatch toL33tMatch({
required String password,
required int start,
required int end,
required List<PasswordChange> changes,
required String changesDisplay,
}) =>
L33tMatch(
password: password,
start: start,
end: end,
matchedWord: matchedWord,
rank: rank,
dictionary: dictionary,
levenshteinDistance: levenshteinDistance,
levenshteinDistanceEntry: levenshteinDistanceEntry,
changes: changes,
changesDisplay: changesDisplay,
);