isPlaylistCarousel function

bool isPlaylistCarousel(
  1. List<JsonMap> contents
)

Chart playlists are the only carousel items linking to a "VL" playlist

Implementation

bool isPlaylistCarousel(List<JsonMap> contents) {
  final browseId = nav(contents.first, [
    MTRIR,
    ...TITLE,
    ...NAVIGATION_BROWSE_ID,
  ], nullIfAbsent: true);
  return browseId is String && browseId.startsWith('VL');
}