MetricItem constructor

const MetricItem({
  1. required String label,
  2. required String value,
  3. double? labelFontSize,
  4. Color? labelColor,
  5. FontWeight? labelFontWeight,
  6. double? valueFontSize,
  7. Color? valueColor,
  8. FontWeight? valueFontWeight,
})

Implementation

const MetricItem({
  required this.label,
  required this.value,
  this.labelFontSize,
  this.labelColor,
  this.labelFontWeight,
  this.valueFontSize,
  this.valueColor,
  this.valueFontWeight,
});