Skip to content

Instantly share code, notes, and snippets.

@ricardoogliari
Created July 7, 2019 03:32
Show Gist options
  • Save ricardoogliari/95c504c1210a24e858b0dfdd0096a971 to your computer and use it in GitHub Desktop.
Save ricardoogliari/95c504c1210a24e858b0dfdd0096a971 to your computer and use it in GitHub Desktop.
subscribeToTopic.dart
void _subscribeToTopic(String topic) {
if (connectionState == mqtt.MqttConnectionState.connected) {
client.subscribe(topic, mqtt.MqttQos.exactlyOnce);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment