VxStat constructor

const VxStat({
  1. Key? key,
  2. required String label,
  3. required String value,
  4. required IconData icon,
  5. Color iconColor = Colors.black,
  6. Color labelColor = Colors.black,
  7. Color valueColor = Colors.black,
  8. TextStyle? labelStyle,
  9. TextStyle? valueStyle,
})

Implementation

const VxStat({
  super.key,
  required this.label,
  required this.value,
  required this.icon,
  this.iconColor = Colors.black,
  this.labelColor = Colors.black,
  this.valueColor = Colors.black,
  this.labelStyle,
  this.valueStyle,
});