ApiBody.xml constructor

const ApiBody.xml(
  1. String xml
)

XML body.

Sets Content-Type: application/xml.

Implementation

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