Create an HTML response
Response htmlResponse(String content, {int status = 200}) { return Response( status, headers: { 'Content-Type': 'text/html; charset=utf-8', }, body: content, ); }