reauthenticateWithPassword abstract method

Future<Either<AuthServiceSignInFailure, Unit>> reauthenticateWithPassword(
  1. String password
)

Re-authenticate current user with password for sensitive operations

Required before operations like changing email, password, or deleting account

Implementation

Future<Either<AuthServiceSignInFailure, Unit>> reauthenticateWithPassword(
  String password,
);