unsubscribeFromTopic method Null safety
- String topic
Unsubscribe from topic in background.
Implementation
Future<void> unsubscribeFromTopic(String topic) {
_assertTopicName(topic);
return _delegate.unsubscribeFromTopic(topic);
}
Unsubscribe from topic in background.
Future<void> unsubscribeFromTopic(String topic) {
_assertTopicName(topic);
return _delegate.unsubscribeFromTopic(topic);
}