ProxyAnalytics constructor
const
ProxyAnalytics({
- int totalProxiesFetched = 0,
- int totalProxiesValidated = 0,
- int totalSuccessfulValidations = 0,
- int totalFailedValidations = 0,
- int totalRequests = 0,
- int totalSuccessfulRequests = 0,
- int totalFailedRequests = 0,
- int averageResponseTime = 0,
- double averageSuccessRate = 0.0,
- Map<
String, int> proxiesByCountry = const {}, - Map<
String, int> proxiesByAnonymityLevel = const {}, - Map<
String, int> requestsByProxySource = const {},
Creates a new ProxyAnalytics instance
Implementation
const ProxyAnalytics({
this.totalProxiesFetched = 0,
this.totalProxiesValidated = 0,
this.totalSuccessfulValidations = 0,
this.totalFailedValidations = 0,
this.totalRequests = 0,
this.totalSuccessfulRequests = 0,
this.totalFailedRequests = 0,
this.averageResponseTime = 0,
this.averageSuccessRate = 0.0,
this.proxiesByCountry = const {},
this.proxiesByAnonymityLevel = const {},
this.requestsByProxySource = const {},
});