ProxyModel constructor
ProxyModel({
- required String ip,
- required int port,
- String? countryCode,
- bool isHttps = false,
- ProxyProtocol protocol = ProxyProtocol.http,
- String? anonymityLevel,
- String? region,
- String? isp,
- double? speed,
- bool? supportsWebsockets,
- ProxyAuth? auth,
- int? lastChecked,
- int? responseTime,
- ProxyScore? score,
- String? username,
- String? password,
Creates a new ProxyModel instance
Implementation
ProxyModel({
required super.ip,
required super.port,
super.countryCode,
super.isHttps,
super.protocol,
super.anonymityLevel,
super.region,
super.isp,
super.speed,
super.supportsWebsockets,
super.auth,
this.lastChecked,
this.responseTime,
super.score,
super.username,
super.password,
});