isUrlInProxyCache static method

bool isUrlInProxyCache(
  1. String url
)

Check if a specific URL is in the proxy cache and requires a proxy Returns true if the URL is cached and requires a proxy, false otherwise

Implementation

static bool isUrlInProxyCache(String url) {
  return _SWebViewState._restrictionCache[url] ?? false;
}