isUrlInProxyCache static method
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;
}