spotube/lib/helpers/artist-to-string.dart
Kingkor Roy Tirtho ef121c3613 PageWindowTitlebar now compitable with scaffold's appBar
AlbumCard, ArtistCard, ArtistAlbumCard & ArtistProfile added
UserArtist finished
macos build artifacts upload path corrected
2022-01-23 19:44:26 +06:00

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(", ");
}