LoggerConfig constructor

const LoggerConfig({
  1. String name = '',
  2. bool enabled = false,
  3. bool prettyPrint = false,
  4. String level = 'info',
})

Implementation

const LoggerConfig({
  this.name = '',
  this.enabled = false,
  this.prettyPrint = false,
  this.level = 'info',
});