LogConfig constructor

LogConfig({
  1. LogType logType = LogType.WARN,
  2. bool showDetailedLog = false,
})

Used to configure the logging behavior.

Implementation

LogConfig({
  this.logType = LogType.WARN,
  this.showDetailedLog = false,
});