SocialWidget constructor

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

Implementation

SocialWidget(
    {Key? key,
    required this.iconData,
    required this.placeholderText,
    required this.link,
    this.placeholderStyle = const TextStyle(
      fontSize: 20,
      color: Colors.grey,
    ),
    this.iconSize = 30,
    this.iconColor = Colors.grey})
    : super(key: key);