changeServiceConnection method

  1. @override
void changeServiceConnection(
  1. bool https,
  2. String host,
  3. String port
)
override

bool https indicates if the client will use http or https String host the host of the service String port the port used by the service

Implementation

@override
void changeServiceConnection(bool https, String host, String port) {
  _service.changeServiceConnection(https, host, port);
}