ProfileStatConfig constructor

const ProfileStatConfig({
  1. required String label,
  2. required String value,
  3. int? numericValue,
  4. IconData? icon,
  5. VoidCallback? onTap,
  6. bool visible = true,
})

Implementation

const ProfileStatConfig({
  required this.label,
  required this.value,
  this.numericValue,
  this.icon,
  this.onTap,
  this.visible = true,
});