signInWithApple method

Future<AuthStatus> signInWithApple()

Implementation

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