LoggerInterceptor constructor

LoggerInterceptor(
  1. {bool request = true,
  2. bool requestHeader = false,
  3. bool requestBody = true,
  4. bool responseHeader = true,
  5. bool responseBody = true,
  6. bool error = true,
  7. int maxWidth = 90,
  8. bool compact = true}
)

Implementation

LoggerInterceptor({
  this.request = true,
  this.requestHeader = false,
  this.requestBody = true,
  this.responseHeader = true,
  this.responseBody = true,
  this.error = true,
  this.maxWidth = 90,
  this.compact = true,
});