L33tMatch constructor

L33tMatch({
  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,
  9. required List<PasswordChange> changes,
  10. required String changesDisplay,
})

Creates a match.

Implementation

L33tMatch({
  required String password,
  required int start,
  required int end,
  required String matchedWord,
  required int rank,
  required Dictionary dictionary,
  int? levenshteinDistance,
  String? levenshteinDistanceEntry,
  required this.changes,
  required this.changesDisplay,
}) : super(
        password: password,
        start: start,
        end: end,
        matchedWord: matchedWord,
        rank: rank,
        dictionary: dictionary,
        levenshteinDistance: levenshteinDistance,
        levenshteinDistanceEntry: levenshteinDistanceEntry,
      );