SocialSignInButton constructor
const
SocialSignInButton({
- Key? key,
- required VoidCallback onPressed,
- required IconData icon,
- required String title,
- Color? color,
Creates a SocialSignInButton with the given title, icon, and onPressed function.
The optional color parameter customizes the button's icon and text color.
Implementation
const SocialSignInButton({
super.key,
required this.onPressed,
required this.icon,
required this.title,
this.color,
});