AnalyzerConfig constructor

AnalyzerConfig({
  1. bool computeConstantExpression = false,
  2. bool doStaticAnalysis = false,
  3. bool allowVariableShadowing = true,
  4. bool allowImplicitVariableDeclaration = false,
  5. bool allowImplicitNullToZeroConversion = false,
  6. bool allowImplicitEmptyValueToFalseConversion = false,
  7. bool printPerformanceStatistics = false,
})

Implementation

AnalyzerConfig({
  this.computeConstantExpression = false,
  this.doStaticAnalysis = false,
  this.allowVariableShadowing = true,
  this.allowImplicitVariableDeclaration = false,
  this.allowImplicitNullToZeroConversion = false,
  this.allowImplicitEmptyValueToFalseConversion = false,
  this.printPerformanceStatistics = false,
});