signInWithYahoo<T extends Auth<AuthKeys> > method
Future<AuthResponse<T> >
signInWithYahoo<T extends Auth<AuthKeys> >({
- OAuthAuthenticator? authenticator,
- bool storeToken = false,
- Object? args,
- String? id,
- bool notifiable = true,
Implementation
Future<AuthResponse<T>> signInWithYahoo<T extends Auth>({
OAuthAuthenticator? authenticator,
bool storeToken = false,
Object? args,
String? id,
bool notifiable = true,
}) {
return _i<T>("signInWithYahoo").signInWithYahoo(
authenticator: authenticator,
storeToken: storeToken,
args: args,
id: id,
notifiable: notifiable,
);
}