isDuplicateOf method
Check if the matches are duplicates.
Implementation
bool isDuplicateOf(Object other) =>
other is L33tMatch &&
password == other.password &&
start == other.start &&
end == other.end &&
matchedWord == other.matchedWord &&
rank == other.rank &&
dictionary == other.dictionary &&
levenshteinDistance == other.levenshteinDistance &&
levenshteinDistanceEntry == other.levenshteinDistanceEntry &&
changesDisplay == other.changesDisplay;