LoggerOptions.detailed constructor

const LoggerOptions.detailed({
  1. void logPrint(
    1. String message
    ) = print,
  2. List<APIMethod> methods = APIMethod.values,
  3. bool colorOutput = true,
})

Creates detailed logging options (all information enabled).

Implementation

const LoggerOptions.detailed({
  this.logPrint = print,
  this.methods = APIMethod.values,
  this.colorOutput = true,
})  : request = true,
      requestBody = true,
      responseBody = true,
      error = true,
      stackTrace = true,
      prettyPrint = true;