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