dumpTrace function

void dumpTrace(
  1. StackTrace stackTrace, {
  2. String? title,
  3. bool alwaysPrint = false,
})

Global function to dump a stack trace with human-readable format and emojis.

Implementation

void dumpTrace(
  StackTrace stackTrace, {
  String? title,
  bool alwaysPrint = false,
}) {
  JetLogger.dumpTrace(stackTrace, title: title, alwaysPrint: alwaysPrint);
}