WebConsolePrinter constructor

WebConsolePrinter({
  1. int methodCount = 8,
  2. int? errorMethodCount,
  3. bool suppressTypeNames = false,
})

Implementation

WebConsolePrinter({
  this.methodCount = 8,
  this.errorMethodCount,
  this.suppressTypeNames = false,
}) {
  _stackParser = StackTraceParser(
    methodCount: methodCount,
    errorMethodCount: errorMethodCount,
    excludePaths: const [],
    showAsyncGaps: false,
  );
  _callerExtractor = CallerExtractor();
}