PrettyDioLogger constructor

PrettyDioLogger({
  1. bool request = true,
  2. bool requestHeader = false,
  3. bool requestBody = false,
  4. bool responseHeader = false,
  5. bool responseBody = true,
  6. bool error = true,
  7. int maxWidth = 90,
  8. bool compact = true,
  9. void logPrint(
    1. Object object
    ) = print,
})

Implementation

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