signInWithGoogle method
Implementation
Future<AuthStatus> signInWithGoogle() async {
User? user = await _firebaseAuthRepository.signInWithGoogle();
return await logInOrRegister(user);
}
Future<AuthStatus> signInWithGoogle() async {
User? user = await _firebaseAuthRepository.signInWithGoogle();
return await logInOrRegister(user);
}