sendHtml method

void sendHtml(
  1. String html, {
  2. int? statusCode,
})

Sends raw HTML content.

Implementation

void sendHtml(String html, {int? statusCode}) {
  _body.sendHtml(html);
}