forgotUser method

Future<Response> forgotUser(
  1. String email
)

Send a hash by email in the users services and returns Future<http.Response>

Implementation

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