GoogleSignInButton constructor

const GoogleSignInButton({
  1. void onPressed()?,
  2. String label = 'Continue with Google',
  3. ButtonSize size = ButtonSize.medium,
  4. bool fullWidth = false,
  5. bool disabled = false,
  6. bool loading = false,
  7. Key? key,
})

Implementation

const GoogleSignInButton({
  this.onPressed,
  this.label = 'Continue with Google',
  this.size = ButtonSize.medium,
  this.fullWidth = false,
  this.disabled = false,
  this.loading = false,
  super.key,
});