isGroupTopicName static method

bool isGroupTopicName(
  1. String topicName
)

Figure out if the topic name belongs to a group

Implementation

static bool isGroupTopicName(String topicName) {
  return Tools.topicType(topicName) == 'grp';
}