LoggingOptions constructor

const LoggingOptions({
  1. bool logNetworkTraffic = true,
  2. bool request = true,
  3. bool requestHeader = true,
  4. bool requestBody = true,
  5. bool responseBody = true,
  6. bool responseHeader = true,
  7. bool error = true,
  8. bool compact = true,
  9. bool logStorage = true,
  10. bool logCacheStorage = true,
})

Implementation

const LoggingOptions({
  this.logNetworkTraffic = true,
  this.request = true,
  this.requestHeader = true,
  this.requestBody = true,
  this.responseBody = true,
  this.responseHeader = true,
  this.error = true,
  this.compact = true,
  this.logStorage = true,
  this.logCacheStorage = true,
});