signInWithProvider method

Future<UserCredentialPlatform> signInWithProvider(
  1. AuthProvider provider
)

Signs in with an AuthProvider using native authentication flow.

A FirebaseAuthException maybe thrown with the following error code:

  • user-disabled:
  • Thrown if the user corresponding to the given email has been disabled.

Implementation

Future<UserCredentialPlatform> signInWithProvider(
  AuthProvider provider,
) async {
  throw UnimplementedError('signInWithProvider() is not implemented');
}