RobotRemoteServer constructor

RobotRemoteServer(
  1. dynamic library, {
  2. dynamic host = '127.0.0.1',
  3. dynamic port = 8270,
})

Implementation

RobotRemoteServer(this.library, {this.host = '127.0.0.1', this.port = 8270}) {
  this._libraryFactory = RemoteLibraryFactory(library);
  this.robotRemoteHandler = RobotRemoteHandler(robotCodecs);
  this._register_functions();
}