RxNetLogAdapterInterceptor constructor

RxNetLogAdapterInterceptor({
  1. bool request = true,
  2. bool requestHeader = true,
  3. bool requestBody = true,
  4. bool responseHeader = true,
  5. bool responseBody = true,
  6. bool error = true,
  7. void logPrint(
    1. Object object
    ) = log2Console,
})

Implementation

RxNetLogAdapterInterceptor({
  this.request = true,
  this.requestHeader = true,
  this.requestBody = true,
  this.responseHeader = true,
  this.responseBody = true,
  this.error = true,
  this.logPrint = log2Console,
});