AurisStatCard constructor

const AurisStatCard({
  1. Key? key,
  2. required String label,
  3. required String value,
  4. String? unit,
  5. String? delta,
  6. bool deltaPositiveIsGood = true,
})

Creates a stat card.

Implementation

const AurisStatCard({
  super.key,
  required this.label,
  required this.value,
  this.unit,
  this.delta,
  this.deltaPositiveIsGood = true,
});