html method

Response html(
  1. String html, {
  2. int status = 200,
})

Implementation

Response html(String html, {int status = 200}) {
  return Response.html(html, status: status);
}