resetPassword static method
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;
}