mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00
14 lines
233 B
Dart
14 lines
233 B
Dart
import 'package:spotify/spotify.dart';
|
|
|
|
extension ArtistJson on ArtistSimple {
|
|
Map<String, dynamic> toJson() {
|
|
return {
|
|
"href": href,
|
|
"id": id,
|
|
"name": name,
|
|
"type": type,
|
|
"uri": uri,
|
|
};
|
|
}
|
|
}
|