SocialLoginButton constructor

const SocialLoginButton({
  1. Key? key,
  2. required SocialProvider provider,
  3. required VoidCallback? onPressed,
  4. String? label,
  5. double? width,
  6. double? height,
  7. bool isLoading = false,
  8. bool enabled = true,
})

Implementation

const SocialLoginButton({
  super.key,
  required this.provider,
  required this.onPressed,
  this.label,
  this.width,
  this.height,
  this.isLoading = false,
  this.enabled = true,
});