isValid method

bool isValid(
  1. String profileName,
  2. String link
)

Implementation

bool isValid(String profileName, String link) {
  var matches = profiles[profileName];
  return findIndexFromLink(matches, trim(link), config) != -1;
}