linkExistingUserWithCredentials method

Future<User?> linkExistingUserWithCredentials(
  1. String provider,
  2. List<String> scopes, [
  3. Map<String, String>? customOAuthParameters
])

Starts a OAuth sign-in flow for provider using Firebase. The instance of FirebaseAuth will be from the default Firebase App Unless withApp is used to build an instance. The credentials will be added to the existing Firebase User An error will be throw if there's no Firebase User

Implementation

Future<User?> linkExistingUserWithCredentials(
    String provider, List<String> scopes,
    [Map<String, String>? customOAuthParameters]) async {
  throw UnimplementedError(
      "linkExistingUserWithCredentials() is not implemented");
}