isDuplicateOf method

bool isDuplicateOf(
  1. Object other
)

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;