sendHTML method
Implementation
void sendHTML(String data) async {
response.headers.set('Content-type', 'text/html');
response.writeln(data);
await close();
}
void sendHTML(String data) async {
response.headers.set('Content-type', 'text/html');
response.writeln(data);
await close();
}