getErrorInfo static method
에러 코드에 대한 상세 정보 반환
Implementation
static ErrorInfo getErrorInfo(String code) {
return _errorInfoMap[code] ??
ErrorInfo(
message: '알 수 없는 에러가 발생했습니다.',
hint: '문제가 지속되면 이슈를 등록해주세요.',
docs: 'https://github.com/k-auth/k-auth/issues',
);
}