create

fun create(contentType: MediaType?, content: String): ResponseBody
fun create(contentType: MediaType?, content: ByteArray): ResponseBody
fun create(contentType: MediaType?, content: ByteString): ResponseBody

Deprecated

Moved to extension function. Put the 'content' argument first to fix Java

Replace with

import okhttp3.ResponseBody.Companion.toResponseBody
content.toResponseBody(contentType)

fun create(contentType: MediaType?, contentLength: Long, content: BufferedSource): ResponseBody

Deprecated

Moved to extension function. Put the 'content' argument first to fix Java

Replace with

import okhttp3.ResponseBody.Companion.asResponseBody
content.asResponseBody(contentType, contentLength)