isExistAccount static method
Implementation
static Future<AccountSignUpType?> isExistAccount(String email) async {
await initialize();
logger.finest('isExistAccount');
final value = await HycopFactory.account!.isExistAccount(email).catchError((error, stackTrace) {
logger.severe('isExistAccount failed (${error.toString()})');
throw HycopUtils.getHycopException(
error: error, defaultMessage: 'AccountManager.isExistAccount Failed !!!');
});
return value;
}