resetPassword static method

Future<(String, String)> resetPassword(
  1. String email
)

Implementation

static Future<(String, String)> resetPassword(String email) async {
  await initialize();
  var ret = await HycopFactory.account!.resetPassword(email).catchError((error, stackTrace) =>
      throw HycopUtils.getHycopException(
          error: error, defaultMessage: 'AccountManager.resetPassword Failed !!!'));
  return ret;
}