mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 16:05:18 +00:00

songlink.com will provide accurate match verified by community for most spotify tracks improving overall match accuracy for Youtube audio source
20 lines
494 B
Dart
20 lines
494 B
Dart
part of './song_link.dart';
|
|
|
|
@freezed
|
|
class SongLink with _$SongLink {
|
|
const factory SongLink({
|
|
required String displayName,
|
|
required String linkId,
|
|
required String platform,
|
|
required bool show,
|
|
required String? uniqueId,
|
|
required String? country,
|
|
required String? url,
|
|
required String? nativeAppUriMobile,
|
|
required String? nativeAppUriDesktop,
|
|
}) = _SongLink;
|
|
|
|
factory SongLink.fromJson(Map<String, dynamic> json) =>
|
|
_$SongLinkFromJson(json);
|
|
}
|