StatData constructor

const StatData({
  1. required String label,
  2. required String value,
  3. String? description,
  4. String? descriptionIcon,
  5. String? color,
  6. List<double>? chart,
  7. String? resourceKey,
})

Implementation

const StatData({
  required this.label,
  required this.value,
  this.description,
  this.descriptionIcon,
  this.color,
  this.chart,
  this.resourceKey,
});