LoggingInterceptor constructor

LoggingInterceptor({
  1. bool logRequest = true,
  2. bool logResponse = true,
  3. bool logError = true,
  4. String logTag = 'FittorClient',
})

Implementation

LoggingInterceptor({
  this.logRequest = true,
  this.logResponse = true,
  this.logError = true,
  this.logTag = 'FittorClient',
});