LogConfig constructor

LogConfig({
  1. String? access,
  2. bool? dnsLog,
  3. LogLevel? logLevel = LogLevel.warning,
  4. String? error,
  5. String? maskAddress,
})

Implementation

LogConfig({
  this.access,
  this.dnsLog,
  this.logLevel = LogLevel.warning,
  this.error,
  this.maskAddress,
});