callResetPasswordFunction method
Calls the reset password function, configured on the server.
Implementation
Future<void> callResetPasswordFunction(String email, String password, {List<dynamic>? functionArgs}) {
return realmCore.emailPasswordCallResetPasswordFunction(app, email, password, functionArgs != null ? jsonEncode(functionArgs) : null);
}