GenClient constructor

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

Implementation

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