Server constructor

Server({
  1. String host = HostType.LOCALHOST,
  2. String prefix = DAEMON_DEFAULT_PREFIX,
  3. int port = DAEMON_DEFAULT_PORT,
})

Implementation

Server({
  this.host = HostType.LOCALHOST,
  this.prefix = DAEMON_DEFAULT_PREFIX,
  this.port = DAEMON_DEFAULT_PORT,
});