Future<http.Response> addUser() {
var regForm = new Map();
regForm['firstName'] = _firstNameTextController.text;
regForm['lastName'] = _lastNameTextController.text;
regForm['email'] = _emailTextController.text;
regForm['relationship'] = _dropdownValue;
regForm['relationOther'] = _relationTextController.text;
regForm['username'] = _usernameTextController.text;
regForm['password'] = encr(_passwordTextController.text);
regForm['passwordHint'] = _passwordHintTextController.text;
regForm['passwordQ1'] = _passwordRecoveryQ1TextController.text;
regForm['passwordA1'] = _passwordRecoveryA1TextController.text;
regForm['passwordQ2'] = _passwordRecoveryQ2TextController.text;
regForm['passwordA2'] = _passwordRecoveryA2TextController.text;
regForm['passwordQ3'] = _passwordRecoveryQ3TextController.text;
regForm['passwordA3'] = _passwordRecoveryA3TextController.text;
Constants.API_URL + '/addUser',
headers: <String, String>{'Content-Type': 'application/json'},
body: json.encode(regForm),
);
}