ApiBody.text constructor
const
ApiBody.text(
- 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,
);