signInWithGoogle method

Future<AuthStatus> signInWithGoogle()

Implementation

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