HttpContext constructor

HttpContext(
  1. String id,
  2. HttpRequest req,
  3. HttpResponse resp, {
  4. dynamic next = _defaultHandler<HttpContext>,
})

Implementation

HttpContext(super.id, super.req, super.resp,
    {next = _defaultHandler<HttpContext>}) {
  _nextHandler = next;
}