toL33tMatch method

L33tMatch toL33tMatch({
  1. required String password,
  2. required int start,
  3. required int end,
  4. required List<PasswordChange> changes,
  5. required String changesDisplay,
})

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,
    );