ApiBody.text constructor

const ApiBody.text(
  1. String text
)

Plain-text body.

Sets Content-Type: text/plain.

Implementation

const ApiBody.text(String text)
    : this(
        type: ApiBodyType.raw,
        rawData: text,
        rawContentType: RawBodyContentType.text,
      );