getTopicOfFriendListOfUser static method

String getTopicOfFriendListOfUser(
  1. String userId
)

Compute a common topic for friend requests

Implementation

static String getTopicOfFriendListOfUser(String userId) {
  return sha256.convert((userId + topicSalt).codeUnits).toString();
}