buildHttpClient method
Builds an HTTP client with proxy support
This is a convenience method for creating an HTTP client
Implementation
Future<ProxyHttpClient> buildHttpClient() async {
final proxyManager = await buildProxyManager();
return ProxyHttpClient(
proxyManager: proxyManager,
useValidatedProxies: _useValidatedProxies,
rotateProxies: _rotateProxies,
);
}