userDescription method

TopicSubscription? userDescription(
  1. String userId
)

Get user description from global cache. The user does not need to be a subscriber of this topic.

Implementation

TopicSubscription? userDescription(String userId) {
  var user = _cacheManager.getUser(userId);
  return user;
}