LoggerConfig constructor

const LoggerConfig({
  1. bool shouldShowLogs = kDebugMode,
  2. int methodCount = 2,
  3. int errorMethodCount = 8,
  4. int lineLength = 120,
  5. bool colors = true,
  6. bool printEmojis = true,
  7. bool printTime = false,
  8. LogsLevel logLevel = LogsLevel.all,
})

Implementation

const LoggerConfig({
  this.shouldShowLogs = kDebugMode,
  this.methodCount = 2,
  this.errorMethodCount = 8,
  this.lineLength = 120,
  this.colors = true,
  this.printEmojis = true,
  this.printTime = false,
  this.logLevel = LogsLevel.all
});