captureStackTrace property

bool get captureStackTrace

Whether to capture stack traces on state changes.

Enabling this incurs a significant performance penalty. Use only for debugging.

Implementation

static bool get captureStackTrace => Lx.captureStackTrace;
set captureStackTrace (bool value)

Implementation

static set captureStackTrace(bool value) {
  Lx.captureStackTrace = value;
}