mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55: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
45 lines
1.6 KiB
Dart
45 lines
1.6 KiB
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'recommendation_seeds.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
_$RecommendationSeedsImpl _$$RecommendationSeedsImplFromJson(Map json) =>
|
|
_$RecommendationSeedsImpl(
|
|
acousticness: json['acousticness'] as num?,
|
|
danceability: json['danceability'] as num?,
|
|
durationMs: json['duration_ms'] as num?,
|
|
energy: json['energy'] as num?,
|
|
instrumentalness: json['instrumentalness'] as num?,
|
|
key: json['key'] as num?,
|
|
liveness: json['liveness'] as num?,
|
|
loudness: json['loudness'] as num?,
|
|
mode: json['mode'] as num?,
|
|
popularity: json['popularity'] as num?,
|
|
speechiness: json['speechiness'] as num?,
|
|
tempo: json['tempo'] as num?,
|
|
timeSignature: json['time_signature'] as num?,
|
|
valence: json['valence'] as num?,
|
|
);
|
|
|
|
Map<String, dynamic> _$$RecommendationSeedsImplToJson(
|
|
_$RecommendationSeedsImpl instance) =>
|
|
<String, dynamic>{
|
|
'acousticness': instance.acousticness,
|
|
'danceability': instance.danceability,
|
|
'duration_ms': instance.durationMs,
|
|
'energy': instance.energy,
|
|
'instrumentalness': instance.instrumentalness,
|
|
'key': instance.key,
|
|
'liveness': instance.liveness,
|
|
'loudness': instance.loudness,
|
|
'mode': instance.mode,
|
|
'popularity': instance.popularity,
|
|
'speechiness': instance.speechiness,
|
|
'tempo': instance.tempo,
|
|
'time_signature': instance.timeSignature,
|
|
'valence': instance.valence,
|
|
};
|