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