GenClient constructor

GenClient({
  1. String host = '0.0.0.0',
  2. int port = 8080,
  3. bool encrypt = true,
})

Implementation

GenClient({String host = '0.0.0.0', int port = 8080, bool encrypt = true}) {
  this._host = host;
  this._port = port;
  this._encrypt = encrypt;
}