MqttConnectionBase<T extends Object>.fromConnect constructor

MqttConnectionBase<T extends Object>.fromConnect(
  1. String server,
  2. int port,
  3. EventBus? clientEventBus
)

Initializes a new instance of the MqttConnection class.

Implementation

MqttConnectionBase.fromConnect(String server, int port, this.clientEventBus) {
  connect(server, port);
}