dumpTrace function
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);
}