List<Album> findAlbums(int id) { return albums .where((album) => album['id'] == id) .map(convertToAlbum) .toList(); }