Server constructor

Server(
  1. String _id,
  2. String _host,
  3. int _port,
  4. bool _isHttp,
  5. CookieHandler _cookieHandler,
  6. Map<String, dynamic> _defaultHeader,
  7. Map<String, dynamic> _defaultBody,
)

Implementation

Server(this._id, this._host, this._port, this._isHttp, this._cookieHandler,
    this._defaultHeader, this._defaultBody);