SocialSignInButton constructor

const SocialSignInButton({
  1. required String label,
  2. Component? icon,
  3. void onPressed()?,
  4. ButtonSize size = ButtonSize.medium,
  5. bool disabled = false,
  6. bool loading = false,
  7. bool fullWidth = false,
  8. String? backgroundColor,
  9. String? foregroundColor,
  10. String? borderColor,
  11. String? hoverBackgroundColor,
  12. Key? key,
})

Implementation

const SocialSignInButton({
  required this.label,
  this.icon,
  this.onPressed,
  this.size = ButtonSize.medium,
  this.disabled = false,
  this.loading = false,
  this.fullWidth = false,
  this.backgroundColor,
  this.foregroundColor,
  this.borderColor,
  this.hoverBackgroundColor,
  super.key,
});