PrintingColoredLogsTree constructor

PrintingColoredLogsTree({
  1. int maxLineSize = 800,
  2. int stacktraceLoggingThreshold = 900,
  3. LoggerOutput loggerOutput = const CorePrinterLoggerOutput(),
})

Implementation

PrintingColoredLogsTree({
  int maxLineSize = 800,
  int stacktraceLoggingThreshold = 900,
  LoggerOutput loggerOutput = const CorePrinterLoggerOutput(),
}) : super(
        maxLineSize: maxLineSize,
        stacktraceLoggingThreshold: stacktraceLoggingThreshold,
        loggerOutput: loggerOutput,
      );