SimpleLogPrinter constructor

SimpleLogPrinter(
  1. String className, {
  2. bool printCallingFunctionName = true,
  3. bool printCallStack = false,
  4. List<String> exludeLogsFromClasses = const [],
  5. String? showOnlyClass,
})

Implementation

SimpleLogPrinter(
    this.className, {
      this.printCallingFunctionName = true,
      this.printCallStack = false,
      this.exludeLogsFromClasses = const [],
      this.showOnlyClass,
    });