unsubscribeFromTopic method

Future<void> unsubscribeFromTopic(
  1. String topic
)

Unsubscribe from topic in background.

Implementation

Future<void> unsubscribeFromTopic(String topic) {
  _assertTopicName(topic);
  return _delegate.unsubscribeFromTopic(topic);
}