signInWithYahoo method
Implementation
Future<AuthResponse<T>> signInWithYahoo({
Object? args,
String? id,
bool notifiable = true,
}) {
return _signInWithOAuth(
provider: 'YAHOO',
doneMsg: msg.signInWithYahoo.done,
failureMsg: msg.signInWithYahoo.failure,
signIn: () => delegate.signInWithYahoo(),
args: args,
id: id,
notifiable: notifiable,
);
}