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