sendHtml method
send html String
Implementation
void sendHtml(String html) {
response
..headers.contentType = ContentType.html
..write(html)
..close();
}
send html String
void sendHtml(String html) {
response
..headers.contentType = ContentType.html
..write(html)
..close();
}