withUserProperties method

MqttAuthenticateMessage withUserProperties(
  1. List<MqttUserProperty> properties
)

Sets a list of user properties

Implementation

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