isSavedAlbums method

  1. @Deprecated('Use [containsSavedAbums(ids)]')
Future<List<bool>> isSavedAlbums(
  1. List<String> ids
)

Check if passed albums (ids) are saved by current user. The output bool list is in the same order as the provided album ids list

Implementation

@Deprecated('Use [containsSavedAbums(ids)]')
Future<List<bool>> isSavedAlbums(List<String> ids) async {
  final result = await containsSavedAlbums(ids);
  return result.values.toList();
}