mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-15 08:35:18 +00:00
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(
|
|
not_acoustic: json['not_acoustic'] as num?,
|
|
dance_ability: json['dance_ability'] as num?,
|
|
durationMs: json['duration_ms'] as num?,
|
|
energy: json['energy'] as num?,
|
|
not_instrumental: json['not_instrumental'] 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?,
|
|
talkative: json['talkative'] 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>{
|
|
'not_acoustic': instance.not_acoustic,
|
|
'dance_ability': instance.dance_ability,
|
|
'duration_ms': instance.durationMs,
|
|
'energy': instance.energy,
|
|
'not_instrumental': instance.not_instrumental,
|
|
'key': instance.key,
|
|
'liveness': instance.liveness,
|
|
'loudness': instance.loudness,
|
|
'mode': instance.mode,
|
|
'popularity': instance.popularity,
|
|
'talkative': instance.talkative,
|
|
'tempo': instance.tempo,
|
|
'time_signature': instance.timeSignature,
|
|
'valence': instance.valence,
|
|
};
|