QualityThresholds constructor

const QualityThresholds({
  1. required BigInt excellent,
  2. required BigInt great,
  3. required BigInt good,
  4. required BigInt moderate,
  5. required BigInt poor,
})

Implementation

const QualityThresholds({
  required this.excellent,
  required this.great,
  required this.good,
  required this.moderate,
  required this.poor,
});