MetricsCardRow constructor

const MetricsCardRow({
  1. required String key,
  2. required String label,
  3. required String unit,
  4. String? subtitle,
})

Implementation

const MetricsCardRow({
  required this.key,
  required this.label,
  required this.unit,
  this.subtitle,
});