Config constructor

Config({
  1. bool simple = _defaultSimple,
  2. bool prefixedIdentifier = _defaultPrefixedIdentifier,
  3. bool interpolation = _defaultInterpolation,
  4. bool binary = _defaultBinary,
  5. bool adjacent = _defaultAdjacent,
  6. bool method = _defaultMethod,
  7. bool simpleIdentifier = _defaultSimpleIdentifier,
  8. bool property = _defaultProperty,
  9. bool function = _defaultFunction,
  10. ErrorSeverity severity = ErrorSeverity.ERROR,
})

Implementation

Config({
  this.simple = _defaultSimple,
  this.prefixedIdentifier = _defaultPrefixedIdentifier,
  this.interpolation = _defaultInterpolation,
  this.binary = _defaultBinary,
  this.adjacent = _defaultAdjacent,
  this.method = _defaultMethod,
  this.simpleIdentifier = _defaultSimpleIdentifier,
  this.property = _defaultProperty,
  this.function = _defaultFunction,
  this.severity = ErrorSeverity.ERROR,
});