ProxyValidationOptions constructor

const ProxyValidationOptions({
  1. String? testUrl,
  2. int timeout = 10000,
  3. bool updateScore = true,
  4. bool validateHttps = false,
  5. bool validateSocks = false,
  6. bool validateWebsockets = false,
  7. bool logErrors = true,
  8. bool categorizeErrors = true,
})

Creates a new ProxyValidationOptions with the given parameters

Implementation

const ProxyValidationOptions({
  this.testUrl,
  this.timeout = 10000,
  this.updateScore = true,
  this.validateHttps = false,
  this.validateSocks = false,
  this.validateWebsockets = false,
  this.logErrors = true,
  this.categorizeErrors = true,
});