mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00
8 lines
268 B
Dart
8 lines
268 B
Dart
import 'package:spotify/spotify.dart';
|
|
|
|
String imageToUrlString(List<Image>? images, {int index = 0}) {
|
|
return images != null && images.isNotEmpty
|
|
? images[0].url!
|
|
: "https://avatars.dicebear.com/api/croodles-neutral/${DateTime.now().toString()}.png";
|
|
}
|