ProfileStatsCard constructor

const ProfileStatsCard({
  1. Key? key,
  2. required AppProfile profile,
  3. bool showAvatar = true,
  4. bool showName = true,
  5. bool compact = false,
  6. bool showFollowStats = true,
  7. List<ProfileStatConfig>? customStats,
  8. VoidCallback? onFollowersTap,
  9. VoidCallback? onFollowingTap,
  10. VoidCallback? onPostsTap,
  11. VoidCallback? onCollectivesTap,
  12. VoidCallback? onEventsTap,
  13. VoidCallback? onItemsTap,
})

Implementation

const ProfileStatsCard({
  super.key,
  required this.profile,
  this.showAvatar = true,
  this.showName = true,
  this.compact = false,
  this.showFollowStats = true,
  this.customStats,
  this.onFollowersTap,
  this.onFollowingTap,
  this.onPostsTap,
  this.onCollectivesTap,
  this.onEventsTap,
  this.onItemsTap,
});