Config constructor
Config({
- bool simple = _defaultSimple,
- bool prefixedIdentifier = _defaultPrefixedIdentifier,
- bool interpolation = _defaultInterpolation,
- bool binary = _defaultBinary,
- bool adjacent = _defaultAdjacent,
- bool method = _defaultMethod,
- bool simpleIdentifier = _defaultSimpleIdentifier,
- bool property = _defaultProperty,
- bool function = _defaultFunction,
- 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,
});