PrettyPrinter constructor
PrettyPrinter({})
Implementation
PrettyPrinter({
this.stackTraceBeginIndex = 0,
this.methodCount = 2,
this.errorMethodCount = 8,
this.lineLength = 120,
this.colors = true,
this.printEmojis = true,
this.printTime = false,
this.excludeBox = const {},
this.noBoxingByDefault = false,
this.excludePaths = const [],
}) {
_startTime ??= DateTime.now();
var doubleDividerLine = StringBuffer();
var singleDividerLine = StringBuffer();
for (var i = 0; i < lineLength - 1; i++) {
doubleDividerLine.write(doubleDivider);
singleDividerLine.write(singleDivider);
}
_topBorder = '$topLeftCorner$doubleDividerLine';
_middleBorder = '$middleCorner$singleDividerLine';
_bottomBorder = '$bottomLeftCorner$doubleDividerLine';
// Translate excludeBox map (constant if default) to includeBox map with all Level enum possibilities
includeBox = {};
for (var l in Level.values) {
includeBox[l] = !noBoxingByDefault;
}
excludeBox.forEach((k, v) => includeBox[k] = !v);
}