constructCoverPageUrl static method

List<String> constructCoverPageUrl(
  1. Map<String, String> map
)

Implementation

static List<String> constructCoverPageUrl(Map<String, String> map) {
  return [
    for (final mangaId in map.keys)
      'https://uploads.mangadex.org/covers/$mangaId/${map[mangaId]}'
  ];
}