InterpreterConfig constructor

InterpreterConfig({
  1. bool showDartStackTrace = false,
  2. bool showHetuStackTrace = false,
  3. int stackTraceDisplayCountLimit = kStackTraceDisplayCountLimit,
  4. bool processError = true,
  5. bool allowVariableShadowing = true,
  6. bool allowImplicitVariableDeclaration = false,
  7. bool allowImplicitNullToZeroConversion = false,
  8. bool allowImplicitEmptyValueToFalseConversion = false,
})

Implementation

InterpreterConfig(
    {this.showDartStackTrace = false,
    this.showHetuStackTrace = false,
    this.stackTraceDisplayCountLimit = kStackTraceDisplayCountLimit,
    this.processError = true,
    this.allowVariableShadowing = true,
    this.allowImplicitVariableDeclaration = false,
    this.allowImplicitNullToZeroConversion = false,
    this.allowImplicitEmptyValueToFalseConversion = false});