subscriber method

TopicSubscription? subscriber(
  1. String userId
)

Get cached subscription for the given user Id

Implementation

TopicSubscription? subscriber(String userId) {
  return _users[userId];
}