recoverPassword method

Future<Response> recoverPassword(
  1. String email
)

Recoveries the password of the user sending an e-mail

Implementation

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