MetricDisplay constructor

const MetricDisplay({
  1. required String value,
  2. required String label,
  3. String? icon,
  4. String? trend,
  5. bool trendPositive = true,
  6. Key? key,
})

Implementation

const MetricDisplay({
  required this.value,
  required this.label,
  this.icon,
  this.trend,
  this.trendPositive = true,
  super.key,
});