LoggingTree.coloredPrinting constructor

LoggingTree.coloredPrinting({
  1. int maxLineSize = 800,
  2. int stacktraceLoggingThreshold = 900,
})

Implementation

factory LoggingTree.coloredPrinting({
  int maxLineSize = 800,
  int stacktraceLoggingThreshold = 900,
}) {
  return PrintingColoredLogsTree(
    maxLineSize: maxLineSize,
    stacktraceLoggingThreshold: stacktraceLoggingThreshold,
  );
}