PopNetworkLogInterceptor constructor

PopNetworkLogInterceptor({
  1. bool showRequestHeader = false,
  2. bool showRequestBody = true,
  3. bool showRequest = true,
  4. bool showResponseHeader = false,
  5. bool showResponseBody = true,
  6. bool showError = true,
  7. void logPrint(
    1. Object object
    ) = print,
})

Implementation

PopNetworkLogInterceptor({
  this.showRequestHeader = false,
  this.showRequestBody = true,
  this.showRequest = true,
  this.showResponseHeader = false,
  this.showResponseBody = true,
  this.showError = true,
  this.logPrint = print,
});