subscribeTo method

void subscribeTo(
  1. String channel
)

Implementation

void subscribeTo(String channel) {
  _client!.subscribe(channel, MqttQos.atLeastOnce);
}