LinterIssue constructor

const LinterIssue(
  1. LinterRule rule,
  2. Parser parser,
  3. String description, [
  4. void fixer()?,
])

Constructs a new linter rule.

Implementation

const LinterIssue(this.rule, this.parser, this.description, [this.fixer]);