MetricsThresholds constructor

const MetricsThresholds({
  1. double minMaintainability = 50.0,
  2. int maxCyclomatic = 20,
  3. int maxCognitive = 15,
  4. int maxLinesOfCode = 100,
})

Implementation

const MetricsThresholds({
  this.minMaintainability = 50.0,
  this.maxCyclomatic = 20,
  this.maxCognitive = 15,
  this.maxLinesOfCode = 100,
});