ApiBody.text constructor

const ApiBody.text(
  1. String text
)

Plain text body.

Implementation

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