mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-15 08:35:18 +00:00

* feat: add playback history provider * feat: implement recently played section * refactor: use route names * feat: add stats summary and top tracks/artists/albums * feat: add top date based filtering * feat: add stream money calculation * refactor: place search in mobile navbar and settings in home appbar * feat: add individual minutes and streams page * feat(stats): add individual minutes and streams page * chore: default period to 1 month * feat: add text to explain user how hypothetical fees are calculated * chore: ensure usage of route names instead of direct paths * cd: add cache key * cd: remove media_kit_event_loop from git
33 lines
1.2 KiB
Dart
33 lines
1.2 KiB
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'song_link.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
_$SongLinkImpl _$$SongLinkImplFromJson(Map json) => _$SongLinkImpl(
|
|
displayName: json['displayName'] as String,
|
|
linkId: json['linkId'] as String,
|
|
platform: json['platform'] as String,
|
|
show: json['show'] as bool,
|
|
uniqueId: json['uniqueId'] as String?,
|
|
country: json['country'] as String?,
|
|
url: json['url'] as String?,
|
|
nativeAppUriMobile: json['nativeAppUriMobile'] as String?,
|
|
nativeAppUriDesktop: json['nativeAppUriDesktop'] as String?,
|
|
);
|
|
|
|
Map<String, dynamic> _$$SongLinkImplToJson(_$SongLinkImpl instance) =>
|
|
<String, dynamic>{
|
|
'displayName': instance.displayName,
|
|
'linkId': instance.linkId,
|
|
'platform': instance.platform,
|
|
'show': instance.show,
|
|
'uniqueId': instance.uniqueId,
|
|
'country': instance.country,
|
|
'url': instance.url,
|
|
'nativeAppUriMobile': instance.nativeAppUriMobile,
|
|
'nativeAppUriDesktop': instance.nativeAppUriDesktop,
|
|
};
|