completeResetPassword method
Completes the reset password procedure by providing the desired new password
using the
password reset token
and tokenId
that were emailed to a user.
Implementation
Future<void> completeResetPassword(String password, String token, String tokenId) {
return app.handle.completeResetPassword(password, token, tokenId);
}