SocialButtonWidget constructor
- Key? key,
- required Color bgColor,
- required String imagePath,
- required String buttonName,
- required VoidCallback onPress,
Creates a SocialButtonWidget with an image and label.
Implementation
const SocialButtonWidget({
super.key,
required this.bgColor,
required this.imagePath,
required this.buttonName,
required this.onPress,
});