stackTraceConverter property

StackTrace? Function(StackTrace?) stackTraceConverter
getter/setter pair

Override this function if you want to convert a stacktrace for some reason for example to apply a source map in the browser.

Implementation

static StackTrace? Function(StackTrace?) stackTraceConverter = (s) => s;