LoggingConfig constructor

const LoggingConfig({
  1. bool enablePrettyLogs = true,
  2. bool showEmojis = true,
  3. bool showTimestamp = true,
  4. bool showColors = true,
  5. bool showBorders = true,
  6. int lineLength = 120,
  7. LogLevel minimumLevel = LogLevel.verbose,
  8. bool enabled = true,
  9. bool enableDevToolsJson = false,
  10. Map<LogType, LogTypeConfig> logTypeConfigs = const {},
})

Implementation

const LoggingConfig({
  this.enablePrettyLogs = true,
  this.showEmojis = true,
  this.showTimestamp = true,
  this.showColors = true,
  this.showBorders = true,
  this.lineLength = 120,
  this.minimumLevel = LogLevel.verbose,
  this.enabled = true,
  this.enableDevToolsJson = false,
  this.logTypeConfigs = const {},
});