Redirects to another URL (convenience method).
Future<void> redirect(String url, {int status = 302}) async { _status.setStatus(status); _headers.setLocation(url); _body.sendEmpty(); _sent = true; }