SimpleFormatter constructor

const SimpleFormatter({
  1. bool includeTimestamp = true,
  2. bool includeLevel = true,
  3. bool includeLoggerName = true,
  4. bool includeTag = true,
  5. String timestampFormat(
    1. DateTime
    )?,
})

Implementation

const SimpleFormatter({
  this.includeTimestamp = true,
  this.includeLevel = true,
  this.includeLoggerName = true,
  this.includeTag = true,
  this.timestampFormat,
});