isSynced method

bool isSynced(
  1. String topicId
)

Whether a topic has been synced (either from cache or fresh download).

Implementation

bool isSynced(String topicId) =>
    _synced.contains(topicId) ||
    (_localStore.isReady && _localStore.hasTopicCached(topicId));