ProxyConfiguration constructor

ProxyConfiguration({
  1. String? httpsProxy,
  2. String? httpProxy,
  3. String? noProxy,
  4. MTLSConfig? mtlsConfig,
  5. List<String>? caCertificates,
  6. bool proxyResolvesHosts = false,
})

Implementation

ProxyConfiguration({
  this.httpsProxy,
  this.httpProxy,
  this.noProxy,
  this.mtlsConfig,
  this.caCertificates,
  this.proxyResolvesHosts = false,
});