SolidFormatting constructor

const SolidFormatting({
  1. required double lowerThreshold,
  2. required double higherThreshold,
  3. required String lower,
  4. required String mid,
  5. required String higher,
  6. String? color,
  7. List<SolidFormattingSet>? sets,
})

Implementation

const SolidFormatting({
  required this.lowerThreshold,
  required this.higherThreshold,
  required this.lower,
  required this.mid,
  required this.higher,
  this.color,
  this.sets,
});