GoogleSSOButton constructor

const GoogleSSOButton({
  1. Key? key,
  2. required VoidCallback onPressed,
  3. String buttonText = 'Sign in with Google',
  4. String logoPath = 'assets/images/google_logo.png',
  5. double height = 56,
})

Implementation

const GoogleSSOButton({
  super.key,
  required this.onPressed,
  this.buttonText = 'Sign in with Google',
  this.logoPath = 'assets/images/google_logo.png',
  this.height = 56,
});