getLocalizedTopic method

String getLocalizedTopic()

Return the global topic of the PubSub. All observers of the same topic will receive the same events.

Implementation

String getLocalizedTopic() {
  return isTopicSharedAcrossApps()
      ? getTopic()
      : "${LocalitySocialCloud.appId}-${getTopic()}";
}