RedirectSocialIcon constructor

const RedirectSocialIcon({
  1. Key? key,
  2. required String url,
  3. required IconData icon,
  4. double? radius,
  5. double? size,
  6. Color? iconColor,
  7. Color? circleAvatarColor,
})

Implementation

const RedirectSocialIcon({
  Key? key,
  required this.url,
  required this.icon,
  this.radius,
  this.size,
  this.iconColor,
  this.circleAvatarColor,
}) : super(key: key);