LoggerInterceptor constructor

LoggerInterceptor({
  1. bool requestUrl = true,
  2. bool requestHeader = false,
  3. bool requestBody = false,
  4. bool responseHeader = false,
  5. bool responseBody = true,
  6. bool responseError = true,
})

Implementation

LoggerInterceptor({
  this.requestUrl = true,
  this.requestHeader = false,
  this.requestBody = false,
  this.responseHeader = false,
  this.responseBody = true,
  this.responseError = true,
});