LogOptions constructor

const LogOptions({
  1. bool showTime = true,
  2. bool showEmoji = true,
  3. bool logInRelease = true,
  4. LoggerLevel level = LoggerLevel.info,
  5. LogFormatter? formatter,
})

Implementation

const LogOptions({
  this.showTime = true,
  this.showEmoji = true,
  this.logInRelease = true,
  this.level = LoggerLevel.info,
  this.formatter,
});