DebtMetricsThresholds constructor

const DebtMetricsThresholds({
  1. double maintainabilityIndex = 50.0,
  2. int cyclomaticComplexity = 20,
  3. int cognitiveComplexity = 15,
  4. int linesOfCode = 100,
})

Implementation

const DebtMetricsThresholds({
  this.maintainabilityIndex = 50.0,
  this.cyclomaticComplexity = 20,
  this.cognitiveComplexity = 15,
  this.linesOfCode = 100,
});