AppleSignInIconButton constructor

const AppleSignInIconButton({
  1. Key? key,
  2. required Widget loadingIndicator,
  3. AuthAction? action = null,
  4. FirebaseAuth? auth,
  5. bool? isLoading,
  6. DifferentProvidersFoundCallback? onDifferentProvidersFound,
  7. SignedInCallback? onSignedIn,
  8. void onTap()?,
  9. bool? overrideDefaultTapAction,
  10. double? size,
  11. void onError(
    1. Exception exception
    )?,
  12. VoidCallback? onCanceled,
})

Implementation

const AppleSignInIconButton({
  super.key,
  required super.loadingIndicator,
  super.action = null,
  super.auth,
  bool? isLoading,
  super.onDifferentProvidersFound,
  super.onSignedIn,
  super.onTap,
  super.overrideDefaultTapAction,
  super.size,
  super.onError,
  super.onCanceled,
}) : super(
        isLoading: isLoading ?? false,
        label: '',
      );