Options constructor

Options({
  1. bool allowIcannDomains = true,
  2. bool allowPrivateDomains = false,
  3. bool detectIp = true,
  4. bool extractHostname = true,
  5. bool mixedInputs = true,
  6. List<String>? validHosts,
  7. bool validateHostname = true,
})

Implementation

Options({
  super.allowIcannDomains = true,
  super.allowPrivateDomains = false,
  this.detectIp = true,
  this.extractHostname = true,
  this.mixedInputs = true,
  this.validHosts,
  this.validateHostname = true,
});