MqttBrowserConnection<T extends Object>.fromConnect constructor

MqttBrowserConnection<T extends Object>.fromConnect(
  1. String server,
  2. int port,
  3. dynamic clientEventBus
)

Initializes a new instance of the MqttBrowserConnection class.

Implementation

MqttBrowserConnection.fromConnect(String server, int port, clientEventBus)
  : super(clientEventBus) {
  connect(server, port);
}