html static method
Send an HTML response
Implementation
static void html(String html) {
response.header('Content-Type', 'text/html');
response.send(html);
}
Send an HTML response
static void html(String html) {
response.header('Content-Type', 'text/html');
response.send(html);
}