Text response helper
shelf.Response textResponse( String text, { int status = 200, }) { return shelf.Response( status, headers: {'Content-Type': 'text/plain; charset=utf-8'}, body: text, ); }