updatePassword abstract method

Future<Response> updatePassword(
  1. String email,
  2. String password,
  3. String newPassword,
  4. String jwt,
)

Changes the user's password in the service using email, password, newPassword and jwt

Implementation

Future<Response> updatePassword(
    String email, String password, String newPassword, String jwt);