isFollowing method

  1. @Deprecated('Use [spotify.me.checkFollowing(type, ids)] instead')
Future<List<bool>> isFollowing(
  1. FollowingType type,
  2. List<String> ids
)

Check to see if the current user is following one or more artists or other Spotify users. The output bool list is in the same order as the provided artist-id list

Implementation

@Deprecated('Use [spotify.me.checkFollowing(type, ids)] instead')
Future<List<bool>> isFollowing(FollowingType type, List<String> ids) async =>
    (await checkFollowing(type, ids)).values.toList();