ProfileStatItem constructor

const ProfileStatItem({
  1. Key? key,
  2. required String label,
  3. required String value,
  4. IconData? icon,
  5. VoidCallback? onTap,
})

Implementation

const ProfileStatItem({
  super.key,
  required this.label,
  required this.value,
  this.icon,
  this.onTap,
});