mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00
6 lines
159 B
Dart
6 lines
159 B
Dart
import 'package:spotify/spotify.dart';
|
|
|
|
String artistsToString(List<Artist> artists) {
|
|
return artists.map((e) => e.name?.replaceAll(",", " ")).join(", ");
|
|
}
|