NeoStatCard constructor

const NeoStatCard({
  1. Key? key,
  2. required String label,
  3. required String value,
  4. String? helper,
  5. IconData? icon,
  6. Color? color,
  7. Color? shadowColor,
  8. Color? textColor,
})

Creates a NeoStatCard instance.

Implementation

const NeoStatCard({
  super.key,
  required this.label,
  required this.value,
  this.helper,
  this.icon,
  this.color,
  this.shadowColor,
  this.textColor,
});