startsWithAnyRedirectUrl method

bool startsWithAnyRedirectUrl(
  1. String url
)

Implementation

bool startsWithAnyRedirectUrl(String url) => redirectUrls
    .any((redirectUrl) => url != redirectUrl && url.startsWith(redirectUrl));