updatePassword abstract method

Future<void> updatePassword(
  1. String username,
  2. String password,
  3. String code
)

Updates the given username's password validating the change with the given code

Implementation

Future<void> updatePassword(
  // the user whose password is being reset
  String username,
  // the new password
  String password,
  // the confirmation code for password reset
  String code,
);