WakeupServer constructor

WakeupServer(
  1. String host,
  2. int port,
  3. dynamic keepTime,
  4. String shareKey,
  5. WakeupServerStateChanged listener,
)

Implementation

WakeupServer(
    this.host, this.port, this.keepTime, this.shareKey, this.listener) {
  _socketServer = SocketServer(this.host, this.port, _dataListen,
      keepTime: this.keepTime);
}