retrieveUser method

Future<Response> retrieveUser(
  1. String hash,
  2. String password
)

Retrieve a password in the users services and returns Future<http.Response>

Implementation

Future<http.Response> retrieveUser(String hash, String password) {
  var url = wsURL + 'retrieve';
  return http
      .post(Uri.parse(url), body: {'hash': hash, 'password': password});
}