signInWithGoogle method
Implementation
Future<void> signInWithGoogle(String idToken) async {
var request = SignInWithGoogleJwtCommandRequest(
idToken: idToken,
);
final response = await authService.signInWithGoogleJwt(request);
if (response.isAuthenticated) {
_userLoggedInStreamController.add(response.user!);
}
}