isExistAccount static method

Future<AccountSignUpType?> isExistAccount(
  1. String email
)

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;
}