deleteTopic method

void deleteTopic(
  1. String topicName
)

This is a wrapper for delete function which deletes a topic from cache by topic name

Implementation

void deleteTopic(String topicName) {
  return delete('topic', topicName);
}