LoggerConfig constructor

LoggerConfig({
  1. bool isTesting = false,
  2. double logsMaxSize = 10,
  3. bool colorAllLine = true,
  4. bool showTimeConsole = true,
  5. bool showTimeStorage = true,
  6. String timeFormatConsole = 'HH:mm',
  7. String timeFormatStorage = 'yyyy-MM-dd HH:mm',
})

Implementation

LoggerConfig({
  this.isTesting = false,
  this.logsMaxSize = 10,
  this.colorAllLine = true,
  this.showTimeConsole = true,
  this.showTimeStorage = true,
  this.timeFormatConsole = 'HH:mm',
  this.timeFormatStorage = 'yyyy-MM-dd HH:mm',
});