html method

void html(
  1. String data, {
  2. int status = HttpStatus.ok,
})

Set HTML response

Implementation

void html(String data, {int status = HttpStatus.ok}) {
  contentType = ContentType.html;
  this.status = status;
  body = data;
}