CurlClient constructor

CurlClient({
  1. String? executable,
  2. String? userAgent,
  3. String? socksHostPort,
  4. CurlSocksProxyType socksProxyType = CurlSocksProxyType.socks5,
})

HTTP Client in Linux environment, executing the curl binary.

Implementation

CurlClient({
  this.executable,
  this.userAgent,
  this.socksHostPort,
  this.socksProxyType = CurlSocksProxyType.socks5,
});