hasToken method
KO: 토큰 존재 여부 조회
EN: Check token presence
Implementation
Future<bool> hasToken() async {
final token = await _tokenManager.getToken();
SdkLog.d('[AuthApi.hasToken] completed | tokenExists=${token != null}');
return token != null;
}