verifyPasswordResetCode method

Future<String> verifyPasswordResetCode(
  1. String code
)

Verifies a password reset code sent to the user by email or other out-of-band mechanism. Returns the user's e-mail address if valid.

Implementation

Future<String> verifyPasswordResetCode(String code) =>
    handleThenable(jsObject.verifyPasswordResetCode(code));