StatCard constructor

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

Implementation

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