Http constructor

Http(
  1. Server server, {
  2. String? path,
  3. int threads = 1,
})

Implementation

Http(
  this.server, {
  this.path,
  this.threads = 1,
}) {
  _di = DI();
  _router = Router();
}