mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 16:05:18 +00:00
19 lines
411 B
Dart
19 lines
411 B
Dart
import 'package:spotify/spotify.dart';
|
|
|
|
extension AlbumJson on AlbumSimple {
|
|
Map<String, dynamic> toJson() {
|
|
return {
|
|
"albumType": albumType?.name,
|
|
"id": id,
|
|
"name": name,
|
|
"images": images
|
|
?.map((image) => {
|
|
"height": image.height,
|
|
"url": image.url,
|
|
"width": image.width,
|
|
})
|
|
.toList(),
|
|
};
|
|
}
|
|
}
|