signInWithYahoo<T extends Auth<AuthKeys>> method

Future<AuthResponse<T>> signInWithYahoo<T extends Auth<AuthKeys>>({
  1. OAuthAuthenticator? authenticator,
  2. bool storeToken = false,
  3. Object? args,
  4. String? id,
  5. 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,
  );
}