StatCardProps constructor

const StatCardProps({
  1. required String label,
  2. required String value,
  3. String? icon,
  4. String? trend,
  5. bool trendPositive = true,
  6. String? description,
  7. String? iconBackground,
})

Implementation

const StatCardProps({
  required this.label,
  required this.value,
  this.icon,
  this.trend,
  this.trendPositive = true,
  this.description,
  this.iconBackground,
});