ApiBody.text constructor
const
ApiBody.text(
- String text
Plain text body.
Implementation
const ApiBody.text(String text)
: this(
type: ApiBodyType.raw,
rawData: text,
rawContentType: RawBodyContentType.text,
);