ConfigModel constructor

ConfigModel({
  1. ErrorSeverity? simple,
  2. ErrorSeverity? prefixedIdentifier,
  3. ErrorSeverity? interpolation,
  4. ErrorSeverity? binary,
  5. ErrorSeverity? adjacent,
  6. ErrorSeverity? method,
  7. ErrorSeverity? simpleIdentifier,
  8. ErrorSeverity? function,
})

Creates a ConfigModel with individual severity settings for each expression type.

Implementation

ConfigModel({
  this.simple,
  this.prefixedIdentifier,
  this.interpolation,
  this.binary,
  this.adjacent,
  this.method,
  this.simpleIdentifier,
  this.function,
});