ApiBody.xml constructor

const ApiBody.xml(
  1. String xml
)

XML body.

Implementation

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