jsonPut method

RequestX jsonPut()

Implementation

RequestX jsonPut () {
  _method = RequestMethod.put;
  _headers['Accept'] = 'application/json';
  _headers['Content-Type'] = 'application/json; charset=UTF-8';
  return this;
}