SocialIcon constructor

const SocialIcon({
  1. required Component icon,
  2. required String label,
  3. String? href,
  4. void onTap()?,
  5. Key? key,
})

Implementation

const SocialIcon({
  required this.icon,
  required this.label,
  this.href,
  this.onTap,
  super.key,
});