JobContext constructor

JobContext(
  1. String id,
  2. JobRequest req,
  3. JobResponse resp, {
  4. dynamic next = _defaultHandler<JobContext>,
})

Implementation

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