recommendSongs method

Future<RecommendSongEntity?> recommendSongs()

每日推荐歌曲(需要登录)

Implementation

Future<RecommendSongEntity?> recommendSongs() async {
  return await BujuanMusicManager()
      .post<RecommendSongEntity>(url: Api.recommendSongs, options: createOption());
}