dump method

void dump({
  1. String? title,
  2. bool alwaysPrint = false,
})

Logs the stack trace using the new human-readable format with emojis.

Implementation

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