callResetPasswordFunction method

Future<void> callResetPasswordFunction(
  1. String email,
  2. String password,
  3. {List? functionArgs}
)

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