fromTopic method

MqttUnsubscribeMessage fromTopic(
  1. String topic
)

Adds a topic to the list of topics to unsubscribe from.

Implementation

MqttUnsubscribeMessage fromTopic(String topic) {
  payload.addSubscription(topic);
  return this;
}