toReverseMatch method
Converts the match to a ReverseMatch.
Implementation
ReverseMatch toReverseMatch() => ReverseMatch(
password: password.split('').reversed.join(''),
start: password.length - end,
end: password.length - start,
matchedWord: matchedWord,
rank: rank,
dictionary: dictionary,
levenshteinDistance: levenshteinDistance,
levenshteinDistanceEntry: levenshteinDistanceEntry,
);