createAuthenticate method

Future<Response> createAuthenticate(
  1. String name,
  2. String email,
  3. String password
)

Creates and authenticates a user in the users services and returns Future<http.Response>

Implementation

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