Example #1
0
 public DiagnosticsStackTrace(
     string name,
     IterableFilter <string> stackFilter = null,
     bool showSeparator = true
     ) : base(
         name: name,
         properties: new List <DiagnosticsNode>(),
         style: DiagnosticsTreeStyle.flat,
         showSeparator: showSeparator,
         allowTruncate: true
         )
 {
 }
Example #2
0
 public UIWidgetsErrorDetails(
     Exception exception                       = null,
     string library                            = "UIWidgets framework",
     DiagnosticsNode context                   = null,
     IterableFilter <string> stackFilter       = null,
     InformationCollector informationCollector = null,
     bool silent = false
     )
 {
     this.exception            = exception;
     this.library              = library;
     this.context              = context;
     this.stackFilter          = stackFilter;
     this.informationCollector = informationCollector;
     this.silent = silent;
 }