ApiBody.html constructor

const ApiBody.html(
  1. String html
)

HTML body.

Sets Content-Type: text/html.

Implementation

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