ApiBody.html constructor

const ApiBody.html(
  1. String html
)

HTML body.

Implementation

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