isInvalidTokenError method
KO: 유효하지 않은 토큰으로 인한 에러인지 확인
EN: Check whether the error is due to an invalid token
Implementation
bool isInvalidTokenError() {
if (this is KakaoAuthException &&
(this as KakaoAuthException).error == AuthErrorCause.invalidGrant) {
return true;
} else if (this is KakaoApiException &&
(this as KakaoApiException).code == ApiErrorCause.invalidToken) {
return true;
}
return false;
}