LoggerInterceptor constructor

LoggerInterceptor({
  1. bool showLogRequest = true,
  2. bool showLogResponse = true,
  3. bool showLogError = true,
})

Implementation

LoggerInterceptor({
  this.showLogRequest = true,
  this.showLogResponse = true,
  this.showLogError = true,
});