confirmPasswordReset abstract method

Future<void> confirmPasswordReset(
  1. String code,
  2. String newPassword
)

Confirms a password reset using the provided code and new password.

This method should be implemented by the subclass based on the specific authentication provider's logic.

Implementation

Future<void> confirmPasswordReset(String code, String newPassword);