yahooOAuthLogin static method
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,
);
}