Proxy.https constructor
Proxy.https({})
Creates a new Proxy with HTTPS protocol
Implementation
factory Proxy.https({
required String ip,
required int port,
String? countryCode,
String? anonymityLevel,
String? region,
String? isp,
double? speed,
bool? supportsWebsockets,
ProxyAuth? auth,
}) {
return Proxy(
ip: ip,
port: port,
countryCode: countryCode,
isHttps: true,
protocol: ProxyProtocol.https,
anonymityLevel: anonymityLevel,
region: region,
isp: isp,
speed: speed,
supportsWebsockets: supportsWebsockets,
auth: auth,
);
}