SocialLink constructor

const SocialLink({
  1. Key? key,
  2. required IconData iconData,
  3. String username = "",
  4. required String url,
  5. TextStyle placeholderStyle = const TextStyle(fontSize: 20, color: Colors.grey),
  6. double iconSize = 30,
  7. Color iconColor = Colors.grey,
})

Implementation

const SocialLink(
    {super.key,
    required this.iconData,
    this.username = "",
    required this.url,
    this.placeholderStyle = const TextStyle(
      fontSize: 20,
      color: Colors.grey,
    ),
    this.iconSize = 30,
    this.iconColor = Colors.grey});