mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-12 23:45:18 +00:00

AlbumCard, ArtistCard, ArtistAlbumCard & ArtistProfile added UserArtist finished macos build artifacts upload path corrected
6 lines
178 B
Dart
6 lines
178 B
Dart
import 'package:spotify/spotify.dart';
|
|
|
|
String artistsToString<T extends ArtistSimple>(List<T> artists) {
|
|
return artists.map((e) => e.name?.replaceAll(",", " ")).join(", ");
|
|
}
|