ZapServer constructor

ZapServer({
  1. dynamic address = '0.0.0.0',
  2. int port = 8000,
  3. String path = "/",
  4. bool shared = true,
  5. int backlog = 0,
})

Implementation

ZapServer({
  this.address = '0.0.0.0',
  this.port = 8000,
  this.path = "/",
  this.shared = true,
  this.backlog = 0,
}){
  _eventCaller = EventCaller(eventBook);
}