ErrorHandlerConfig constructor

ErrorHandlerConfig({
  1. bool showDartStackTrace = false,
  2. bool showHetuStackTrace = false,
  3. int stackTraceDisplayCountLimit = 5,
  4. bool processError = true,
  5. bool debugMode = false,
})

Implementation

ErrorHandlerConfig({
  this.showDartStackTrace = false,
  this.showHetuStackTrace = false,
  this.stackTraceDisplayCountLimit = 5,
  this.processError = true,
  this.debugMode = false,
});