deleteTopic method

Future deleteTopic(
  1. String topicName,
  2. bool hard
)

Delete the topic all together. Requires Owner permission

Implementation

Future deleteTopic(String topicName, bool hard) {
  return _tinodeService.deleteTopic(topicName, hard);
}