jsonPatch method

RequestX jsonPatch()

Implementation

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