Response.html constructor
Creates an HTML response with the provided html string and status code.
Implementation
Response.html(String html, {int status = 200})
: statusCode = status,
body = html,
headers = _CaseInsensitiveMap({'content-type': 'text/html'}),
_cookies = [];