import 'package:spotify/spotify.dart'; String artistsToString(List artists) { return artists.map((e) => e.name?.replaceAll(",", " ")).join(", "); }