authenticationData property

Uint8Buffer authenticationData

Implementation

typed.Uint8Buffer get authenticationData => _authenticationData;
void authenticationData=(Uint8Buffer data)

Implementation

set authenticationData(typed.Uint8Buffer data) {
  var property =
      MqttBinaryDataProperty(MqttPropertyIdentifier.authenticationData);
  property.addBytes(data);
  _propertySet.add(property);
  _authenticationData.clear();
  _authenticationData.addAll(data);
}