$RecommendSongEntityFromJson function
Implementation
RecommendSongEntity $RecommendSongEntityFromJson(Map<String, dynamic> json) {
final RecommendSongEntity recommendSongEntity = RecommendSongEntity();
final int? code = jsonConvert.convert<int>(json['code']);
if (code != null) {
recommendSongEntity.code = code;
}
final RecommendSongData? data = jsonConvert.convert<RecommendSongData>(json['data']);
if (data != null) {
recommendSongEntity.data = data;
}
return recommendSongEntity;
}