LoggerConfig constructor

const LoggerConfig({
  1. bool enabled = true,
  2. LogLevel minLevel = LogLevel.debug,
  3. bool showTimestamp = true,
  4. bool showEmoji = true,
  5. void customLogger(
    1. String message,
    2. LogLevel level
    )?,
})

Implementation

const LoggerConfig({
  this.enabled = true,
  this.minLevel = LogLevel.debug,
  this.showTimestamp = true,
  this.showEmoji = true,
  this.customLogger,
});