followedBy method

  1. @Deprecated('Use [followedByUsers(playListId, userIds)] instead')
Future<List<bool>> followedBy(
  1. String playlistId,
  2. List<String> userIds
)

check if a playlist is followed by provided users playlistId - the playlist ID userIds - the ids of the users The output List of boolean maps to the order of provided userIds list

Implementation

@Deprecated('Use [followedByUsers(playListId, userIds)] instead')
Future<List<bool>> followedBy(String playlistId, List<String> userIds) async {
  return (await followedByUsers(playlistId, userIds)).values.toList();
}