setAuthenticateProxy method
void
setAuthenticateProxy()
override
Sets the function to be called when a proxy is requesting authentication.
Pass through setter of HttpClient.authenticateProxy.
Implementation
@override
void setAuthenticateProxy(
Future<bool> Function(
String host, int port, String scheme, String? realm)?
f) =>
client.authenticateProxy = f;