GoogleSignInButton constructor
- Key? key,
- required VoidCallback onPressed,
- bool isLoading = false,
- String text = 'Continue with Google',
//////////// ////////////
Implementation
// II.B - Constructor
///////////////
const GoogleSignInButton({
super.key,
required this.onPressed,
this.isLoading = false,
this.text = 'Continue with Google',
});