TalkerChopperLoggerSettings constructor
      const
      TalkerChopperLoggerSettings({ 
    
    
- bool enabled = true,
- LogLevel logLevel = LogLevel.debug,
- bool printResponseData = true,
- bool printResponseHeaders = false,
- bool printResponseMessage = true,
- bool printResponseRedirects = false,
- bool printResponseTime = false,
- bool printErrorData = true,
- bool printErrorHeaders = true,
- bool printErrorMessage = true,
- bool printRequestData = true,
- bool printRequestHeaders = false,
- bool printRequestCurl = false,
- AnsiPen? requestPen,
- AnsiPen? responsePen,
- AnsiPen? errorPen,
- RequestFilter? requestFilter,
- ResponseFilter? responseFilter,
- ResponseFilter? errorFilter,
Implementation
const TalkerChopperLoggerSettings({
  this.enabled = true,
  this.logLevel = LogLevel.debug,
  this.printResponseData = true,
  this.printResponseHeaders = false,
  this.printResponseMessage = true,
  this.printResponseRedirects = false,
  this.printResponseTime = false,
  this.printErrorData = true,
  this.printErrorHeaders = true,
  this.printErrorMessage = true,
  this.printRequestData = true,
  this.printRequestHeaders = false,
  this.printRequestCurl = false,
  this.hiddenHeaders = const <String>{},
  this.requestPen,
  this.responsePen,
  this.errorPen,
  this.requestFilter,
  this.responseFilter,
  this.errorFilter,
});