BaseLintRule constructor

BaseLintRule(
  1. LintCode code, {
  2. bool testOnly = false,
  3. bool bothFiles = false,
})

Implementation

BaseLintRule(LintCode code, {bool testOnly = false, bool bothFiles = false})
  : _testOnly = testOnly,
    _bothFiles = bothFiles,
    super(code: code);