LoggerLink constructor

LoggerLink({
  1. String? label,
  2. bool endpoint = false,
  3. bool requestBody = false,
  4. bool requestHeaders = false,
  5. bool responseBody = false,
  6. bool responseHeaders = false,
  7. bool statusCode = false,
  8. bool countRequests = false,
  9. bool responseDuration = false,
})

Implementation

LoggerLink({
  this.label,
  this.endpoint = false,
  this.requestBody = false,
  this.requestHeaders = false,
  this.responseBody = false,
  this.responseHeaders = false,
  this.statusCode = false,
  this.countRequests = false,
  this.responseDuration = false,
});