ExpectedFinding constructor

const ExpectedFinding({
  1. required String analyzerName,
  2. required String code,
  3. required bool shouldBeFound,
})

Implementation

const ExpectedFinding({
  required this.analyzerName,
  required this.code,
  required this.shouldBeFound,
});