ReportConfig constructor

const ReportConfig({
  1. String inputPath = 'coverage/lcov.info',
  2. String? outputPath,
  3. List<String> excludePatterns = const [],
  4. List<String> excludeLinePatterns = const [],
  5. bool uncoveredOnly = false,
  6. double? failUnder,
  7. bool summary = false,
  8. bool noFilter = false,
})

Creates a new reporter configuration.

All parameters are optional and have sensible defaults.

Implementation

const ReportConfig({
  this.inputPath = 'coverage/lcov.info',
  this.outputPath,
  this.excludePatterns = const [],
  this.excludeLinePatterns = const [],
  this.uncoveredOnly = false,
  this.failUnder,
  this.summary = false,
  this.noFilter = false,
});