requestPasswordReset method
This function requests a password reset for a given email address.
Args: email (String): The email parameter is a string that represents the email address of the user who wants to reset their password.
Implementation
Future<void> requestPasswordReset(String email) async {
return _methods.requestPasswordReset(email);
}