withUserProperties method

MqttConnectMessage withUserProperties(
  1. List<MqttUserProperty> properties
)

Sets a list of user properties

Implementation

MqttConnectMessage withUserProperties(List<MqttUserProperty> properties) {
  _variableHeader!.userProperty = properties;
  return this;
}