GoogleSignInIconButton constructor
const
GoogleSignInIconButton({
- Key? key,
- required String clientId,
- required Widget loadingIndicator,
- List<
String> ? scopes, - AuthAction? action = null,
- FirebaseAuth? auth,
- bool? isLoading,
- DifferentProvidersFoundCallback? onDifferentProvidersFound,
- SignedInCallback? onSignedIn,
- void onTap()?,
- bool? overrideDefaultTapAction,
- double? size,
- String? redirectUri,
- void onError(
- Exception exception
- VoidCallback? onCanceled,
Implementation
const GoogleSignInIconButton({
super.key,
required super.clientId,
required super.loadingIndicator,
super.scopes,
super.action = null,
super.auth,
bool? isLoading,
super.onDifferentProvidersFound,
super.onSignedIn,
super.onTap,
super.overrideDefaultTapAction,
super.size,
super.redirectUri,
super.onError,
super.onCanceled,
}) : super(
isLoading: isLoading ?? false,
label: '',
);