StatCard constructor

const StatCard({
  1. required String label,
  2. required String value,
  3. Widget? icon,
  4. String? trend,
  5. bool trendPositive = true,
  6. String? description,
  7. String? iconBackground,
  8. ArcaneStyleData? styles,
  9. ArcaneDecoration? decoration,
  10. Key? key,
})

Implementation

const StatCard({
  required this.label,
  required this.value,
  this.icon,
  this.trend,
  this.trendPositive = true,
  this.description,
  this.iconBackground,
  this.styles,
  this.decoration,
  super.key,
});