updatePassword abstract method

Future<Either<AuthServiceSignInFailure, Unit>> updatePassword(
  1. String newPassword
)

Update the current user's password

Requires recent authentication - call reauthenticateWithPassword first.

Implementation

Future<Either<AuthServiceSignInFailure, Unit>> updatePassword(
  String newPassword,
);