isArtistCarousel function

bool isArtistCarousel(
  1. List<JsonMap> contents
)

Returns true if contents is an artist carousel

Implementation

bool isArtistCarousel(List<JsonMap> contents) {
  return contents.first.containsKey(MRLIR);
}