Prints the current stack trace for debugging.
Null stackTrace({String? title, bool exit = false}) { if (title != null) logInfo(title); logInfo(StackTrace.current); if (exit) throw ''; }