StatBox constructor

const StatBox({
  1. Key? key,
  2. required String title,
  3. required String subtitle,
  4. required Color color,
  5. IconData? icon,
})

Implementation

const StatBox({
  Key? key,
  required this.title,
  required this.subtitle,
  required this.color,
  this.icon,
}) : super(key: key);