FloggerConfig constructor

const FloggerConfig({
  1. String loggerName = "App",
  2. bool printClassName = true,
  3. bool printMethodName = false,
  4. bool showDateTime = false,
  5. bool showDebugLogs = true,
  6. FloggerPrinter? printer,
})

Implementation

const FloggerConfig({
  this.loggerName = "App",
  this.printClassName = true,
  this.printMethodName = false,
  this.showDateTime = false,
  this.showDebugLogs = true,
  this.printer,
});