friendshipsCacheKey function

String friendshipsCacheKey(
  1. String userId
)

Returns the storage key used to persist a user's friendships list.

Implementation

String friendshipsCacheKey(String userId) => 'friendships_$userId';