yahooOAuthLogin static method

Future<User?> yahooOAuthLogin({
  1. dynamic onError(
    1. String
    )?,
})

This Function is Responsible for initiating the Github OAuthEngine

Implementation

static Future<User?> yahooOAuthLogin({
  Function(String)? onError,
}) async {
  return await performOAuthLogin(
    provider: "yahoo.com",
    scopes: [],
    parameters: {"prompt": "login", "language": "en"},
    onError: onError,
  );
}