ReverseMatch constructor

ReverseMatch({
  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

ReverseMatch({
  required String password,
  required int start,
  required int end,
  required String matchedWord,
  required int rank,
  required Dictionary dictionary,
  int? levenshteinDistance,
  String? levenshteinDistanceEntry,
}) : super(
        password: password,
        start: start,
        end: end,
        matchedWord: matchedWord,
        rank: rank,
        dictionary: dictionary,
        levenshteinDistance: levenshteinDistance,
        levenshteinDistanceEntry: levenshteinDistanceEntry,
      );