sendHtml method

void sendHtml(
  1. String html
)

Sends an HTML response (convenience method).

Implementation

void sendHtml(String html) {
  _body.sendHtml(html);
  _sent = true;
}