GoogleSignInButton constructor

const GoogleSignInButton({
  1. Key? key,
  2. required VoidCallback onPressed,
  3. bool isLoading = false,
  4. String text = 'Continue with Google',
})

//////////// ////////////

Implementation

// II.B - Constructor
///////////////
const GoogleSignInButton({
  super.key,
  required this.onPressed,
  this.isLoading = false,
  this.text = 'Continue with Google',
});