MqttServerClient.withPort constructor

MqttServerClient.withPort(
  1. String server,
  2. String clientIdentifier,
  3. int port, {
  4. int maxConnectionAttempts = 3,
})

Initializes a new instance of the MqttServerClient class using the supplied Mqtt Port. The server hostname to connect to The client identifier to use to connect with The port to use

Implementation

MqttServerClient.withPort(
  super.server,
  super.clientIdentifier,
  super.port, {
  this.maxConnectionAttempts = 3,
}) : super.withPort();