match abstract method

List<FutureOr<List<BaseMatch>>> match(
  1. String password
)

Should return the matches for the password.

A synchronous matcher should return a list (usually of length 1) of lists of matches. An asynchronous matcher can return a list of futures that completes with a list of matches.

Implementation

List<FutureOr<List<BaseMatch>>> match(String password);