* @param content Request body content as String.
* @param contentType content-type eg text/plain.
* @return The new request body instance.
*/
public static RequestBody body(String content, String contentType) {
return new RequestBody(content, contentType);
}